All entries for Tuesday 21 February 2012
February 21, 2012
job name in datapump
Pay attention to the format of job name
oracle@db$ expdp / attach=nightly_pump_210212-1059 ed to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production With the Partitioning and Real Application Testing options ORA-31626: job does not exist ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79 ORA-06512: at "SYS.KUPV$FT", line 405 ORA-31638: cannot attach to job nightly_pump_210212-1059 for user NIGHTLY_PUMP_210212 ORA-31632: master table "NIGHTLY_PUMP_210212.nightly_pump_210212-1059" not found, invalid, or inaccessible ORA-00942: table or view does not exist
Datapump can find correct user after changing the job name.
oracle@db$ expdp / attach=nightly_pump_210212_1059 Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production With the Partitioning and Real Application Testing options ORA-31626: job does not exist ORA-06512: at "SYS.DBMS_SYS_ERROR", line 79 ORA-06512: at "SYS.KUPV$FT", line 405 ORA-31638: cannot attach to job NIGHTLY_PUMP_210212_1059 for user OPS$ORACLE ORA-31632: master table "OPS$ORACLE.NIGHTLY_PUMP_210212_1059" not found, invalid, or inaccessible ORA-00942: table or view does not exist
Seemed the ”-” in the job name caused problem.