ORA-01008: not all variables bound
Forum Messages
DECLARE
jobno Number := 1;
BEGIN
dbms_job.submit(
:jobno,
'BEGIN Pack.main_pro; END;',
sysdate,
'sysdate+1/24*60'
);
END;
I take 'ORA-01008: not all variables bound' error. What can I do? |
| : -> 19-APR-2008 21:30:13 | REmove the colon | DbMotive | Reply |
You do not need the colon in front of the job id:
18-APR-2008 21:30:31 ORA-01008: not all variables bound ayvaz Reply
DECLARE
jobno Number := 1;
BEGIN
dbms_job.submit(
jobno,
'BEGIN Pack.main_pro; END;',
sysdate,
'sysdate+1/24*60'
);
END;
|
Add your message for ORA-01008
|