This time, impdp failing to create a job for import and failing with following error:-
ORA-06512: at "SYS.KUPV$FT",
In many cases you sometimes stop data pump job or in case of an abnormal end of the Data Pump job (we call it the orphaned job) or using undocumented parameter KEEP_MASTER=Y, the master table remain in the database.
So lets start digging out for orphaned jobs
Script to check Orphaned Pump Jobs
SET lines 140
COL owner_name FORMAT a10;
COL job_name FORMAT a20
COL state FORMAT a12
COL operation LIKE owner_name
COL job_mode LIKE owner_name
SELECT owner_name, job_name, operation, job_mode,
state, attached_sessions
FROM dba_datapump_jobs;
By running above script if any rows returned in “not running “ mode that means you will be having orphaned jobs. Typically orphaned jobs state will be “Not Running” state and but in my case some are even in Executing mode which they shouldn’t
As I got the following jobs running at my nose.
DBABATCH SYS_EXPORT_FULL_22 Executing
DBABATCH SYS_EXPORT_FULL_22 Not Running
DBABATCH SYS_EXPORT_FULL_22 Not Running
DBABATCH SYS_EXPORT_FULL_22 Not Running
DBABATCH SYS_EXPORT_FULL_22 Not Running
DBABATCH SYS_EXPORT_FULL_22 Not Running
Verify that any data pump sessions are running in the database
Continue reading ORA-06512: at “SYS.KUPV$FT” – impdp failing
Follow Me!!!