11g Using Snapshot Standby Database. (文件 ID 443720.1)
11g Using Snapshot Standby Database. (文件 ID 443720.1)
In this Document
Applies to:Oracle Database - Enterprise Edition - Version 11.2.0.1 and laterInformation in this document applies to any platform. ***Checked for relevance on 26-Feb-2014*** PurposeSnapshot standby database is an Oracle 11g new feature which allows the use of a physical standby database in read write mode for a short period of time. This note explains the concept, creation and usage of snapshot standby database. ScopeDBA and Users. Details
A snapshot standby database is a fully update-able standby database that is created by converting a physical standby database into a snapshot standby database.
1. Snapshot standby database receives and archives, but does not apply the redo data.
The conversion from physical standby to snapshot standby database can be done through the command ALTER DATABASE CONVERT TO SNAPSHOT STANDBY; 1) If not already configured , configure flash recovery area as given below a) Set the size for recovery area. Alter system set db_recovery_file_dest_size= b) Set Flash recovery area. Alter system set db_recovery_file_dest= 2) Bring the physical standby database to mount stage. 3) Stop managed recovery if it is active. 4) Convert physical standby database to snapshot standby database. ALTER DATABASE CONVERT TO SNAPSHOT STANDBY; The database is dismounted during conversion and must be restarted. Once the database is restarted any transaction can be executed . SQL> select open_mode,database_role from v$database; OPEN_MODE DATABASE_ROLE ---------- ---------------- READ WRITE SNAPSHOT STANDBY
An implicit guaranteed restore point is created when a physical standby database is converted into a snapshot standby database and this restore point is used to flashback a snapshot standby to its original state when it is converted back into a physical standby database.
Steps to convert the Snapshot Standby Database to the Physical Standby Database
1. Shutdown the snapshot standby database.
2. Bring the database to the mount stage. 3. Issue the command ALTER DATABASE CONVERT TO PHYSICAL STANDBY; 4. Shutdown the database and mount it . SQL> select open_mode,database_role from v$database; OPEN_MODE DATABASE_ROLE ---------- ---------------- MOUNTED PHYSICAL STANDBY 5. Start the media recovery process. Once a snapshot standby database has been converted back into a physical standby database and restarted, Redo Apply can be started and all redo received by the snapshot standby database will be applied to the physical standby database.
Flashback Database is used to convert a snapshot standby database back into a physical standby database. Any operation that cannot be reversed using Flashback Database technology will prevent a snapshot standby from being converted back to a physical standby.
DGMGRL> CONVERT DATABASE
|
|
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/17252115/viewspace-1283938/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- standby database to primary database.Database
- 11g Dataguard中的snapshot standby特性
- oracle 11g中的snapshot standby特性Oracle
- 聊聊Oracle 11g的Snapshot Standby Database(上)OracleDatabase
- 聊聊Oracle 11g的Snapshot Standby Database(下)OracleDatabase
- 【DataGuard】Oracle 11g DataGuard 新特性之 Snapshot Standby DatabaseOracleDatabase
- 【DATAGUARD】 將11g物理備庫轉換為Snapshot Standby
- Convert a Physical Standby Database into a Snapshot Standby DatabaseDatabase
- 【DG】之 Snapshot standby模式模式
- Physical Standby Database 切換到 Snapshot Standby DatabaseDatabase
- 【Oracle】Installing and Using Standby Statspack in 11gOracle
- 【DataGuard】Oracle 11g物理Data Guard之Snapshot Standby資料庫功能Oracle資料庫
- snapshot standby快照備庫角色
- Data Guard - Snapshot Standby Database配置Database
- 在oracle 10g中實現oracle 11g的snapshot standby特性Oracle 10g
- 【轉】【DataGuard】Oracle 11g物理Data Guard之Snapshot Standby資料庫功能Oracle資料庫
- Step By Step Guide To Create Physical Standby Database Using RMAN [ID 469493.1]GUIIDEDatabase
- 搭建11g 單機 linux standby 操作文件Linux
- Using Parallel Execution (文件 ID 203238.1)Parallel
- Data Guard之Snapshot Standby資料庫功能[轉]資料庫
- Using Workload Capture and Replay (文件 ID 445116.1)APT
- [20230425]注意snapshot standby與activate standby的區別.txt
- Creating a Standby Database using RMAN (Recovery Manager) [ID 118409.1]Database
- 通過Snapshot Standby來精確評估SQL效能SQL
- Using RMAN Incremental Backups to Refresh a Standby DatabaseREMDatabase
- Timeout watchdog using a standby threadthread
- How to Create or Remove Restore Point on Standby database (文件 ID 1672977.1)REMRESTDatabase
- Step-By-Step Guide To Create Physical Standby On Normal File System For ASM Primary using RMANGUIIDEORMASM
- oracle snapshot standby資料庫的scheduler jobs不執行Oracle資料庫
- HOW TO SHRINK A TABLE USING ONLINE REDEFINITION (文件 ID 1357878.1)
- How to Move a Database Using Transportable Tablespaces (文件 ID 1493809.1)Database
- Creating Physical Standby using RMAN Duplicate Without Shutting down The Primary [ID 789370.1]
- Step By Step Guide On Creating Physical Standby Using RMAN Duplicate In ASM Filesystem For ASM PrimaGUIIDEASM
- Data Guard 12C 新特性:Far Sync Standby (文件 ID 2179719.1)
- 12c 的 Cascaded Standby 資料庫 (文件 ID 2179701.1)資料庫
- Using RMAN Incremental Backups to Roll Forward a Physical Standby DatabaseREMForwardDatabase
- Step by Step Guide on Creating Physical Standby Using RMAN DUPLICATE...FROM ACTIVE DATABASE WithoutGUIIDEDatabase
- 11gR2 Active Data Guard 閃回 - flashback database / snapshot standby - 3Database