oracle11g - Scheduling a backup recovery in oracle 11g -
i'm trying schedule backup recovery oracle 11g database, use above script windows task scheduler :
rman target/ run { shutdown immediate; startup mount; backup incremental level 0 database plus archivelog delete input; backup archivelog delete input; delete force noprompt obsolete; backup current controlfile spfile; alter database open; } the scheduler started @ specified time, backup doesn't start. when excute backup via : rman works fine.
========what got widows scheduling task=========== 
=========what should (it's working fine without task scheduling)=== 
obviously, run script isn't working :
run { shutdown immediate; startup mount; backup incremental level 0 database plus archivelog delete input; backup archivelog delete input; delete force noprompt obsolete; backup current controlfile spfile; alter database open; }
Comments
Post a Comment