De tweede parameter van uw procedure is een OUT
parameter -- de waarde ervan wordt toegewezen aan de variabele die is doorgegeven wanneer de procedure is voltooid. U kunt dus geen letterlijke waarde voor deze parameter gebruiken.
U kunt een bindvariabele declareren bij de SQLPlus-prompt en die gebruiken:
-- Declare bind variable
VARIABLE x NUMBER
-- If necessary, initialize the value of x; in your example this should be unnecessary
-- since the value of the second parameter is never read
EXEC :x := 1
-- Call the procedure
EXEC testproc(12, :x)
-- Print the value assigned to the bind variable
PRINT x
Als alternatief kunt u een anoniem PL/SQL-blok gebruiken:
-- Activate client processing of dbms_output buffer
SET SERVEROUTPUT ON
-- In anonymous block, declare variable, call procedure, print resulting value
DECLARE
x NUMBER;
BEGIN
testproc(12, x);
dbms_output.put_line( x );
END;
/