
Issuing this SQL as SYS (SYSDBA) may help show any problem
objects in the dictionary:
可以检查下,有可能是BUG
ORA-600 [17059] (文档 ID 138554.1)
select do.obj#,
po.obj# ,
p_timestamp,
po.stime ,
decode(sign(po.stime-p_timestamp),0,‘SAME’,‘DIFFER’) X
from sys.obj$ do, sys.dependency$ d, sys.obj$ po
where P_OBJ#=po.obj#(+)
and D_OBJ#=do.obj#
and do.status=1 /dependent is valid/
and po.status=1 /parent is valid/
and po.stime!=p_timestamp /parent timestamp not match/
order by 2,1
;
Normally the above select would return no rows. If any rows are
returned the listed dependent objects may need recompiling.
If the Known Issues section below does not help in terms of identifying
a solution, please submit the trace files and alert.log to Oracle
Support Services for further analysis.


