rman hang when I run crosscheck on standby database
I just create a physical standby database, data guard status is right. I don't use rman category to save backup information.I can backup database on primary database, but we I run some command in standby database, it spend long time. Same command can quickly complete on primary database.
RMAN> run
{
allocate channel ch1 type disk;
crosscheck archivelog all;
release channel ch1;
}
using target database control file instead of recovery catalog
allocated channel: ch1
channel ch1: SID=853 device type=DISK
Starting implicit crosscheck backup at 20-FEB-12
Above commad does not return even it run one hours.
Could you tell me the reason and how to fix it?
RMAN> run
{
allocate channel ch1 type disk;
crosscheck archivelog all;
release channel ch1;
}
using target database control file instead of recovery catalog
allocated channel: ch1
channel ch1: SID=853 device type=DISK
Starting implicit crosscheck backup at 20-FEB-12
Above commad does not return even it run one hours.
Could you tell me the reason and how to fix it?
0