I got the following exception when I try to backup of datafiles and archivelogs on physical standby database by uisng RMAN.
RMAN-06820: WARNING: failed to archive current log at primary database
ORACLE error from target database:
ORA-17629: Cannot connect to the remote database server
ORA-17627: ORA-00942: table or view does not exist
This is the backup script
"
connect target sys/oracle
configure controlfile autobackup on;
run {
set nocfau;
allocate channel ch01 device type disk format '/test/%U';
allocate channel ch02 device type disk format '/test/%U';
backup as copy database plus archivelog;
backup as copy current controlfile;
}
"
And there is no ora error in primary's alert log.
I could tnsping both server (primary/standby) correctly and could also remote login primary on standby db server and switch logfile. I read there is one very similar thread but it has not been answered so I post it again and hope i could get some clues. Thanks.