Is it ok to interrupt RMAN backup?
554167Dec 28 2007 — edited Dec 30 2007Hi 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.