Oracle ORA-00600 Error

ORA-00600 as per the description is a catch all error when it comes to data corruption. This error may be raised due to file system or database index and table corruption. However, this error is also catch all when there is fundamental problem in Oracle Database. Thus, making it extremely hard and laborious to trace and resolve.

So, if you ever see an ORA-00600, your best bet is to

  1. rebuild your file system where database is writing
  2. if you have HA configured, reconfigure and validate your “mirrored file mounts”
  3. check your database indexes
  4. if you know the query which tables that query is going against, re-create the table and index.
  5.  Make sure that you do not have open cursor that you rolled back first and try to use to again in the same transaction.

The simplest solution is

  1. Check your transactions such that you are using stale connection or stale cursor
  2. Rebuild your entire database

 

Reference:
http://www.oracle.com/technetwork/issue-archive/2011/11-sep/o51support-453463.html