ORA-08103: object no longer exists and ORA-12801: error signaled in parallel query server During Parallel Execution on Exadata

Hi,

When I run the SQL as parallel execution using Parallel hint, I got ” ORA-08103: object no longer exists ” error.

 

Details of error are as follows.

SQL> SELECT REPORT_DAY,count(*) FROM MEHMET.DEVECI
2 GROUP BY REPORT_DAY;
SELECT REPORT_DAY,count(*) FROM MEHMET.DEVECI
*
ERROR at line 1:
ORA-12801: error signaled in parallel query server P00B, instance
msddb01.msd.local:MSD1 (1)
ORA-08103: object no longer exists

 

This error is related with Partitioned table and Parallel execution on Cluster Nodes.

 

 

To solve this problem, You can run the same SQL as follows.

set the following trace events, then run the same SQL as follows.

alter session set events '10384 trace name context forever , level 16384';

 

SQL> alter session set events '10384 trace name context forever , level 16384';

Session altered.

SQL> ALTER SESSION SET PARALLEL_FORCE_LOCAL=TRUE;

Session altered.

SQL>
SQL> SELECT /*+ PARALLEL(16) */ REPORT_DAY,count(*) FROM MEHMET.DEVECI
2 GROUP BY REPORT_DAY;

REPORT_D COUNT(*)
-------- ----------
20200101 143879088
20200102 143900001
20200103 143919894
20200104 143939085
20200105 143949689
20200106 143974041
20200107 143999241
20200108 144019865
20200109 144040582
20200110 144062839
20200111 144083914

REPORT_D COUNT(*)
-------- ----------
20200112 144095191
20200113 144120876
20200114 144141403
20200115 144167352

15 rows selected.

SQL>

 

 

 

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

https://ittutorial.org/oracle-database-19c-tutorials-for-beginners/

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 *