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

Java 3D LWJGL collision -

spring - SubProtocolWebSocketHandler - No handlers -

methods - python can't use function in submodule -