DBMS_JOB.SUBMIT problem [message #267894] |
Sun, 16 September 2007 02:44 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
ahmed123
Messages: 9 Registered: August 2007 Location: india
|
Junior Member |
![rock_mma%40yahoo.com](/forum/theme/orafaq/images/yahoo.png)
|
|
hii everone
i have a job which runs daily and take backup using datapump daily at 12pm i want to stop this job and reshedule it to morning 7am.. please advice how can i do it.
>> iam issueing this procedure to 1st stop the job
execute DBMS_JOB.REMOVE(jobno);
#########
Variable jobno number
BEGIN
DBMS_JOB.SUBMIT(:jobno, 'DATAPUMP_EXP;', SYSDATE, 'TRUNC(SYSDATE)+1');
COMMIT;
END;
/
Thanks in advance
|
|
|
|