DB import errors
Hi,
I have a question about db import. There are below errors while importing a replicated database dump to a single database schema:
ORA-39083: Object type POST_TABLE_ACTION failed to create with error:
ORA-00942: table or view does not exist
Failing sql is:
BEGIN
SYS.DBMS_REPUTIL.SYNC_UP_REP('A1','AA');
END;
ORA-39083: Object type POST_TABLE_ACTION failed to create with error:
ORA-00942: table or view does not exist
Failing sql is:
BEGIN
SYS.DBMS_REPUTIL.SYNC_UP_REP('A2','BB');
END;
....
These errors are printed to the output screen, is there any way to skip/disable these errors? Or, is there any data pump import parameter to set for this purpose?
I have a question about db import. There are below errors while importing a replicated database dump to a single database schema:
ORA-39083: Object type POST_TABLE_ACTION failed to create with error:
ORA-00942: table or view does not exist
Failing sql is:
BEGIN
SYS.DBMS_REPUTIL.SYNC_UP_REP('A1','AA');
END;
ORA-39083: Object type POST_TABLE_ACTION failed to create with error:
ORA-00942: table or view does not exist
Failing sql is:
BEGIN
SYS.DBMS_REPUTIL.SYNC_UP_REP('A2','BB');
END;
....
These errors are printed to the output screen, is there any way to skip/disable these errors? Or, is there any data pump import parameter to set for this purpose?
0