How to fix the Oracle error ORA-16304: procedure must first be called on primary database?
In this post, you’ll learn more about the Oracle ErrorORA-16304: procedure must first be called on primary database with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
ORA-16304: procedure must first be called on primary database
Reason for the Error ORA-16304: procedure must first be called on primary database
A call was made to DBMS_LOGSTDBY.EDS_ADD_TABLE on a logical standby database without having first called it on the primary database.
How to fix the Error ORA-16304: procedure must first be called on primary database ?
You can fix this error in Oracle by following the below steps
Call DBMS_LOGSTDBY.EDS_ADD_TABLE on the primary database and then retry on the standby.
Leave Your Comment