ORA-00600: internal error code, arguments

ORA-00600:

internal error code, arguments: [string], [string], [string], [string], [string], [string], [string], [string]
Cause:This is the generic internal error number for Oracle program exceptions. This indicates that a process has encountered an exceptional condition.
Action:Report as a bug - the first argument is the internal error number

Yesterday I was working on report in Oracle Report Builder 6i when I compiled all objects by pressing ctrl+shift+k. All objects compiled well, but when I tried to run the report it showed error  
"REP-1247: Report contains uncompiled PL/SQL.". So I opened every formula column to but when I opened below illustrated formula column it was showing error "ORA-00600: internal error code, arguments:[17269],[92714264],[],[],[],[],[],[]" as illustrated below:

To avoid this error what I did is just put the schema name before the table of which table is belong to and again compile the formula column and it compiled successfully as illustrated below. 

We can check the ownership of the table by describing table as below or in TOAD just write down the table name and press F4:

By doing this a window will appeared and you can see the table name prefixed by owner schema on the title bar of the window as illustrated below:
Or you can check the ownership of then table by query:
select *
  from dba_objects
 where object_name = 'PO_REQUISITION_LINES_ALL'
   and object_type = 'TABLE'

as illustrated below:

An other way to find the ownership is illustrated below:
Click on 'Schema Browser' button then on 'TABLE' tab then click on 'FILTER' button now mentioned table name and check the checkbox of 'Check in all Schemas' because we don't know of which schema this table is belongs to and then press 'OK'  button:
By this you can see the ownership as illustrated below:
 
 
 
***************************************************************END**************************************************

No comments:

SHRD0014: GLLEZL - process exiting with failure

  SYMPTOMS Journal Import completes with the following error: Error ------ ORA-01653 : unable to extend table GL.GL_IMPORT_REFERENCES ORA-01...