Oracle
 sql >> Datenbank >  >> RDS >> Oracle

Oracle:Gespeicherte Prozedur innerhalb des Pakets aufrufen

Sie haben es fast geschafft, nehmen Sie einfach EXECUTE:

heraus
DECLARE
  procId NUMBER;

BEGIN
  PKG1.INIT(1143824, 0, procId);
  DBMS_OUTPUT.PUT_LINE(procId);
END;