broker Inconsistent

配置好了dg,enable了dg_broker,

出现了很多错误,其中有一些:

 

 Warning: ORA-16714: the value of property ArchiveLagTarget is inconsistent with the database setting

      Warning: ORA-16714: the value of property LogArchiveMinSucceedDest is inconsistent with the database setting

      Warning: ORA-16714: the value of property LogArchiveTrace is inconsistent with the database setting

      Warning: ORA-16714: the value of property LogArchiveFormat is inconsistent with the database setting

 

以上是在备库上面看到的,使用(show database verbose sagstandby)命令。

解决:

1.show database 'sagstandby' InconsistentProperties;----查看有哪些不一致的选项

DGMGRL> show database 'sagstandby' InconsistentProperties;

INCONSISTENT PROPERTIES

INSTANCE_NAME   PROPERTY_NAME   MEMORY_VALUE     SPFILE_VALUE         BROKER_VALUE 

   sag        ArchiveLagTarget     0                                      0 

   sag   LogArchiveMinSucceedDest  1                                      1 

   sag       LogArchiveTrace       0            (missing)                  0 

   sag     LogArchiveFormat    %t_%s_%r.arc      (missing)           %t_%s_%r.arc

2.edit database 'sagstandby' set property 'ArchiveLagTarget'=0;--修改

Property "ArchiveLagTarget" updated

3.show database 'sagstandby' InconsistentProperties;消失了

你可能感兴趣的:(broker)