ORA-29913: error in executing ODCIEXTTABLEPOPULATE callout and ORA-31693 ORA-31617 ORA-19505 ORA-27037 Oracle Error Solution

Hi,

When you start an export operation, you can get “ORA-31693 ORA-29913 ORA-31617  ORA-19505 ORA-27037 ” errors.

 

ORA-29913: error in executing ODCIEXTTABLEPOPULATE callout

Error details are as follows.

. . exported "MSD"."TEST_TABLE_LOG" 17.47 GB 370136984 rows
ORA-31693: Table data object "MSD"."TEST_TABLE_GSM" failed to load/unload and is being skipped due to error:
ORA-29913: error in executing ODCIEXTTABLEPOPULATE callout
ORA-31617: unable to open dump file "/oradump/datapump_dir/MSD_22012020_TABLES01.dmp" for write
ORA-19505: failed to identify file "/oradump/datapump_dir/MSD_22012020_TABLES01.dmp"
ORA-27037: unable to obtain file status
SVR4 Error: 2: No such file or directory
Additional information: 3
Master table "SYS"."SYS_EXPORT_TABLE_58" successfully loaded/unloaded

 

 

ORA-31693 ORA-31617 ORA-19505 ORA-27037

 

If you got these errors, it means you have used PARALLEL option in the export operation and your database is RAC, not single database.

Your database has lots of Nodes and same Directory or Storage don’t exist another Nodes.

 

To solve this problem, you can add Cluster=N parameter to the export and import operation as follows.

 

 

This parameter will solve this problem.

CLUSTER=N

expdp \"/ as sysdba\" directory=MSD dumpfile=MSD_22012020_TABLES%U.dmp logfile=MSD_22012020_TABLES.log parallel=8 cluster=n exclude=statistics compression=all TABLES=MSD.TEST_TABLE_LOG, MSD.TEST_TABLE_GSM


impdp \"/ as sysdba\" directory=MSD dumpfile=MSD_22012020_TABLES%U.dmp logfile=MSD_22012020_TABLES.log parallel=8 cluster=n TABLES=MSD.TEST_TABLE_LOG, MSD.TEST_TABLE_GSM

 

 

Or you can use Shared storage like ASM Disk groups ( +DATA, +RECO ) for the Export directory.

 

Or Don’t use Parallelism in the Export import operation 😉

 

 

You can read the following article, if you want to learn more details about Export – import.

Oracle Data Pump – Export Import ( Expdp Impdp ) Tutorial with Examples-4

 

 

Do you want to learn Oracle Database for Beginners, then read the following articles.

Oracle Tutorial | Oracle Database Tutorials for Beginners ( Junior Oracle DBA )

About Mehmet Salih Deveci

I am Founder of SysDBASoft IT and IT Tutorial and Certified Expert about Oracle & SQL Server database, Goldengate, Exadata Machine, Oracle Database Appliance administrator with 10+years experience.I have OCA, OCP, OCE RAC Expert Certificates I have worked 100+ Banking, Insurance, Finance, Telco and etc. clients as a Consultant, Insource or Outsource.I have done 200+ Operations in this clients such as Exadata Installation & PoC & Migration & Upgrade, Oracle & SQL Server Database Upgrade, Oracle RAC Installation, SQL Server AlwaysOn Installation, Database Migration, Disaster Recovery, Backup Restore, Performance Tuning, Periodic Healthchecks.I have done 2000+ Table replication with Goldengate or SQL Server Replication tool for DWH Databases in many clients.If you need Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS Consultancy and Training you can send my email adress [email protected].-                                                                                                                                                                                                                                                 -Oracle DBA, SQL Server DBA, APPS DBA,  Exadata, Goldengate, EBS ve linux Danışmanlık ve Eğitim için  [email protected] a mail atabilirsiniz.

Leave a Reply

Your email address will not be published. Required fields are marked *