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=========== enter image description here

=========what should (it's working fine without task scheduling)=== enter image description here

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

Popular posts from this blog

html - height not adding height to a empty div -

angularjs - Redirect to a new template in angular js -

Oracle SQL. How to select specific IDs where value of columns specify criteria? -