ORA-16304: procedure must first be called on primary database ORACLE 报错 故障修复 远程处理
文档解释
ORA-16304: procedure must first be called on primary database
Cause: A call was made to DBMS_LOGSTDBY.EDS_ADD_TABLE on a logical standby database without having first called it on the primary database.
Action: Call DBMS_LOGSTDBY.EDS_ADD_TABLE on the primary database and then retry on the standby.
ORA-16304 错误表明,程序必须先在主(primary)数据库上调用。
官方解释
ORA-16304错误表明在调用过程之前,当前连接必须在主数据库上,并且该过程必须在主数据库上调用。
常见案例
当您尝试在从数据库(secondary database)中调用过程时,可能会发生此错误。
一般处理方法及步骤
应尝试重新连接到主数据库,然后重新尝试调用过程:
• 从主数据库断开连接。
• 重新连接到主数据库。
• 再次尝试调用该过程。