crazyboybert
Programmer
Hi
I am trying to create a stored proc using sql*plus with the follwing code
I get the error:
Warning: Procedure created with compilation errors.
Any help greatly appreciated
Rob
------------------------------------
Go placidly amidst the noise and haste,
find what peace there may be in silence.
-Anon
------------------------------------
I am trying to create a stored proc using sql*plus with the follwing code
Code:
CREATE OR REPLACE PROCEDURE GetTableRowCount(sTable in varchar2(8))
IS
BEGIN
select ROW_COUNT from DLETBLID where TABLE_NAME = sTable;
END GetTableRowCount;
I get the error:
Warning: Procedure created with compilation errors.
Any help greatly appreciated
Rob
------------------------------------
Go placidly amidst the noise and haste,
find what peace there may be in silence.
-Anon
------------------------------------