archive logs not delete on one node [message #306966] |
Mon, 17 March 2008 06:40 |
ORA-MAN
Messages: 24 Registered: January 2008 Location: ===
|
Junior Member |
|
|
Hi,
I have RAC of two nodes when I ran rman script to backup archive logs with delete input option, it removes the files from the volum on node1 and keep the files on node2.
### connect to recovery catalog from node1
run
{
set command id to 'rman';
allocate CHANNEL t1 DEVICE TYPE 'SBT_TAPE'
parms 'ENV=(NSR_SERVER=xxx,NSR_CLIENT=xxx,NSR_DATA_VOLUME_POOL=xxx)';
allocate CHANNEL t2 DEVICE TYPE 'SBT_TAPE'
parms 'ENV=(NSR_SERVER=xxx,NSR_CLIENT=xxx,NSR_DATA_VOLUME_POOL=xxx)' CONNECT 'sys/xxx@node2';
sql 'alter system archive log current';
backup archivelog all delete input
filesperset 50
format 'ARC_%d_%T_%U.bak';
release channel t1;
release channel t2;
}
can some one help me ?
thanks
|
|
|