0% found this document useful (0 votes)
249 views1 page

Oracle - OrA Error When Using Expdp - Stack Overflow

The document discusses ORA errors encountered when using expdp to export data. The errors indicate that a temporary table created for the export job was not dropped. The solutions suggested are to manually drop the temporary table or specify a unique job name when using a parameter file.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
249 views1 page

Oracle - OrA Error When Using Expdp - Stack Overflow

The document discusses ORA errors encountered when using expdp to export data. The errors indicate that a temporary table created for the export job was not dropped. The solutions suggested are to manually drop the temporary table or specify a unique job name when using a parameter file.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

ORAerrorwhenusingexpdp

expdpisgivingthefollowingerrors.

C:\db>expdpSYSTEM/xxx@orcldirectory=dump_dirdumpfile=anew.dmplog=export.logschemas=anew
Export:Release11.2.0.4.0ProductiononQuaFev1717:09:002016
Copyright(c)1982,2011,Oracleand/oritsaffiliates.Allrightsreserved.
Connectedto:OracleDatabase11gEnterpriseEditionRelease11.2.0.4.064bitProduction
WiththePartitioning,OLAP,DataMiningandRealApplicationTestingoptions
ORA31626:jobdoesnotexist
ORA31637:cannotcreatejobSYS_EXPORT_SCHEMA_01foruserSYSTEM
ORA06512:at"SYS.DBMS_SYS_ERROR",line95
ORA06512:at"SYS.KUPV$FT_INT",line798
ORA39244:Eventtodisabledroppingnullbitimageheaderduringrelationalselect
ORA06512:at"SYS.DBMS_SYS_ERROR",line86
ORA06512:at"SYS.KUPC$QUE_INT",line1840
ORA00955:nameisalreadyusedbyanexistingobject

Thereisnoorphanjobsinmysystem:
select*fromdba_datapump_jobs;
norowsselected

Anyideasaboutthiserror?
oracle oracle11g expdp

share edit

askedFeb17at19:49

Bolha
73

addacomment

1Answer

active

oldest

votes

thetemporarytablecreatedeverytimeadatapumpisstartedhasnotbeenautomaticallydropped.

Solution1:droptablesys.job_namewithsysrightsSolution2:usea.parfileandputentrieslikebelow
(changetosuityourjob):
DIRECTORY=dump_dir
DUMPFILE=anew.dmp
LOGFILE=export.log
PARALLEL=16
SCHEMAS=anew
JOB_NAME=new_expdp<thishastochange

You might also like