The oracle dg slave database does not synchronize the data of the master database.

Source: Internet
Author: User

The oracle dg slave database does not synchronize the data of the master database.

Today, a database synchronization problem occurs. The master database is shut down. After the master database is restarted, the slave database cannot synchronize the data of the master database normally. The backup database can be consistent with the master database only when you manually switch to the archive log.

Solution to this problem:

Restart the slave database and apply the archived logs again.

The procedure is as follows:

// Close the standby listener

Lsnrctl stop

// Close the standby Database

Sqlplus/as sysdba

Alter database recover managed standby database cancel;

Shutdown immediate;

// Start the slave Database

Startup nomount;

Alter database mount standby database;

Alter database open read only;

Alter database recover managed standby database using current logfile disconnect from session;

// Start the standby listener

Quit;

Lsnrctl start

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.