Skip to Main Content

Database Software

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!

RMAN-06820: WARNING: failed to archive current log at primary database

Liz Yu-OracleJun 4 2014 — edited Jun 5 2014

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.

This post has been answered by mseberg on Jun 4 2014
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 3 2014
Added on Jun 4 2014
6 comments
9,604 views