Julian,
Can you please tell me how you schedule a job using dbms_job to run once in a week.
rman catalog rman/test@rman target internal/oracle@test_p
run {
execute script full_backup;
}
You need to write a java programme that can do a os callout and then the DBMS_JOB would call this java programme which in turn will excute your..RMAN commands...Using OEM's JOb scheudling facilites would be the easisest way to to this..unless your familar with Java..
For this kind of job my order of preference would be
1)AT or Cron utility
2)OEM Job
3)DBMS_JOB
I would not use DBMS_JOB for this kind of thing..I am waiting to reason out with Julian on why he would prefer dbms_jobs..because using DBMS_JOB would make it unnecessarily complex..for this kind of a Job..and besides if you write a Nt batch script or unix shell script that wraps around this rman script it will also be very very easy when scheduled through AT/cron..
Bookmarks