Impdp import data, ORA-39082 ORA-39083 error number, the object cannot compile after the import can be compiled object to try: alter view view_name compile; if the error: Use show errors to locate the source of the problem, whether it is a permission issue or a dblink issue; if it is a permission issue, it means that the user has not been granted sufficient permissions (mainly the read permission for some tables) when the user is created) we mainly query the following two views: dba_sys_privs and dba_role_privs. If the problem is caused by dblink, we recommend that you use dbms_metadata.get_ddl to view the definition ddl of dblink and try to recreate db_link.
Then, compile the object.
View OBJECT definition ddl: select dbms_metadata.get_ddl ('object _ type', 'object _ name', 'username') from dual;
Invalid compilation object: view: alter view view_name compile; function: alter function function_name compile;
Sys user viewing invalid objects: select owner, object_name, object_type, statusfrom dba_objectswhere status! = 'Valid' and owner not in ('sys ', 'system ')/
Show error usage: view compilation error: alter view view_name compile; Warning: view view_name with compilation errors.
SQL> show errors view view_nameErrors for view view_name:
LINE/col error ----------- ------------------------- 0/0 ORA ---