David Phillips, January 29, 2007 - 11:29 am UTC
How does SQL*Plus execute this command?
EXEC DBMS_JOB.BROKEN(1234, FALSE);
Am I correct in assuming that it is using a special OCI call and not simply translating it into a SQL CALL?
January 31, 2007 - 1:25 pm UTC
I'm not sure what you mean by that.
Chris, February 01, 2007 - 2:03 am UTC
SQL*Plus will execute it as:
BEGIN
DBMS_JOB.BROKEN(1234, FALSE);
END;
It is not an SQL statement, but a PL/SQL block.