- 最后登录
- 2016-4-13
- 在线时间
- 49 小时
- 威望
- 65
- 金钱
- 751
- 注册时间
- 2012-3-13
- 阅读权限
- 50
- 帖子
- 95
- 精华
- 1
- 积分
- 65
- UID
- 293
|
1#
发表于 2013-3-26 21:52:52
|
查看: 4937 |
回复: 7
本帖最后由 etl2007 于 2013-3-26 22:00 编辑
按照Oracle文档的说法
http://docs.oracle.com/cd/B19306_01/server.102/b14237/initparams098.htm
LOG_ARCHIVE_CONFIGProperty Description
Parameter type String
Syntax LOG_ARCHIVE_CONFIG =
{
[ SEND | NOSEND ]
[ RECEIVE | NORECEIVE ]
[ DG_CONFIG=(remote_db_unique_name1 [, ... remote_db_unique_name9) | NODG_CONFIG ]
}
Default value 'SEND, RECEIVE, NODG_CONFIG'
Modifiable ALTER SYSTEM
Basic No
LOG_ARCHIVE_CONFIG enables or disables the sending of redo logs to remote destinations and the receipt of remote redo logs, and specifies the unique database names (DB_UNIQUE_NAME) for each database in the Data Guard configuration.
Values:
•SEND
Enables the sending of redo logs to remote destinations
•NOSEND
Disables the sending of redo logs to remote destinations
•RECEIVE
Enables the receipt of remotely archived redo logs
•NORECEIVE
Disables the receipt of remotely archived redo logs
•DG_CONFIG
Specifies a list of up to 9 unique database names (defined with the DB_UNIQUE_NAME initialization parameter) for all of the databases in the Data Guard configuration.
•NODG_CONFIG
Eliminates the list of service provider names previously specified with the DG_CONFIG option.
但假设我现在
主库 DB_UNique_name = PRI
备库 DB_UNique_name = ST
那么如果我设置成
LOG_ARCHIVE_CONFIG='NORECEIVE,DG_CONFIG= (PRI,ST) '
那不意味着主库和备库都接收不了日志,那么dataguard岂不是成了一句空话
因为日志接收都不支持,那么何况是同步呢?
|
|