Error in import in logfile.
ORA-39083: Object type TYPE:"SCHEMA"."T_DKEG" failed to create with error:
ORA-02304: invalid object identifier literal
Failing sql is:
CREATE EDITIONABLE TYPE "SCHEMA"."T_DKEG" OID '94C6DE8D33F322F1E0539417F30AF613' force as table of varchar2(32767);
Solution:
Your database have another object with OID already.
select owner,type_oid from dba_types where TYPE_OID='94C6DE8D33F322F1E0539417F30AF613';
OWNER TYPE_OID
--------------- --------------------------------
SCHEMA 94C6DE8D33F322F1E0539417F30AF613
so , while import you have to provide below parameter to avoid this issue. and type will generate now OID whiel import.
TRANSFORM=oid:n
No comments:
Post a Comment