Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Is it ok to interrupt RMAN backup?

554167Dec 28 2007 — edited Dec 30 2007
Hi Guys,

Oracle 9206

I am going to run this RMAN script first time on a PRODctuion server.
How can I interrupt / cancel this commands in between (if needed)? What is harm in doing that?

run {
allocate channel t1 TYPE DISK;
allocate channel t2 TYPE DISK;
backup full tag BACKUP_FULL_PROD format '<path>.dbf' database;
backup current controlfile format '<path>.ctl';
sql 'alter system archive log current';
backup archivelog all format '<path>.arc'
release channel t1;
release channel t2;
}

The reason I may need to interrupt /cancel is, we are running user managed hot backup at the regular time. I am going to run this RMAN backup during office time. If any slowness issue occurs I need to know what tings I need to check/perform after canceling it.

Thanks in advance.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 27 2008
Added on Dec 28 2007
10 comments
1,189 views