| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.oracle -> Output parameter and dynamic sql
Hi.
I have a stored procedure on a Oracle 8.1.6 database that generates a dynamic sql statement. This stored procedure has an output parameter that needs to return a count from a view. I can generate and run the sql successfuly, but when I try to return the count I get errors. I am showing the relevant part of the procedure, since the rest of concatenations are used to compose the sql.
CREATE OR REPLACE PROCEDURE getScoreEntries (user VARCHAR2, level
NUMBER, ret OUT NUMBER)
AS
sCall VARCHAR2(500);
nTotal NUMBER;
BEGIN
sCall := 'SELECT COUNT(*) INTO nTotal FROM vw_Scores WHERE
UserName=''' || user || '''';
sCall := sCall || --dynamic sql continues here...
EXECUTE IMMEDIATE sCall;
ret := nTotal;
END getTotalEntries;
Can anyone help me with this issue?
Thanks,
Robert Scheer
Received on Tue Jul 20 2004 - 20:57:09 CDT
![]() |
![]() |