Data Guard Broker
OEM12C配置管理Data Guard中报错如下:
ORA-16792: configurable property value is inconsistent with database setting
查询错误过程:
1:登录物理备库
$ dgmgrl
DGMGRL> connect sys
Password:
Connected.
DGMGRL> show configuration;
Configuration - palm_prim
Protection Mode: MaxPerformance
Databases:
palm_prim - Primary database
palm_stdy - Physical standby database
Warning: ORA-16792: configurable property value is inconsistent with database setting
Fast-Start Failover: DISABLED
Configuration Status:
WARNING
DGMGRL> show database palm_prim statusreport;
STATUS REPORT
INSTANCE_NAME SEVERITY ERROR_TEXT
DGMGRL> show database palm_stdy statusreport;
STATUS REPORT
INSTANCE_NAME SEVERITY ERROR_TEXT
palm WARNING ORA-16714: the value of property LogArchiveFormat is inconsistent with the database setting
2,查看数据库参数
SQL> show parameter Format
NAME TYPE VALUE
------------------------------------ ---------------------- ------------------------------
log_archive_format string %t_%s_%r.dbf
3,查看broker日志
查看/opt/app/oracle/diag/rdbms/palm_stdy/palm/trace/drcpalm.log
Warning: Property 'LogArchiveFormat' has inconsistent values:METADATA='', SPFILE='', DATABASE='%t_%s_%r.dbf'
再次修改参数
DGMGRL> edit database palm_stdy set property LogArchiveFormat='%t_%s_%r.dbf';
Property "logarchiveformat" updated
DGMGRL>
DGMGRL> show database palm_stdy statusreport;
STATUS REPORT
INSTANCE_NAME SEVERITY ERROR_TEXT
————————————————