设置不一致的错误还挺常见的.
inconsistent with database setting
Members:
orclp - Primary database
Warning: ORA-16792: configurable property value is inconsistent with database setting
orcls1 - Physical standby database
Warning: ORA-16792: configurable property value is inconsistent with database setting
Warning: ORA-16714: the value of property StandbyArchiveLocation is inconsistent with the database setting
Warning: ORA-16714: the value of property AlternateLocation is inconsistent with the database setting
这些错误都是描述 broker 的设置和目标数据库的设置不一致.
broker 端修改
DGMGRL> edit database orclp set property StandbyArchiveLocation ='';
或者在目标数据库端修改
SQL> alter system set log_archive_dest_2='';
确保两边设置的值一致,不会再报错.
参考: