Server Error in '/PSM/CSR' Application.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
Exception Details: Oracle.DataAccess.Client.OracleException: ORA-00600: internal error code, arguments: [19004], [], [], [], [], [], [], [], [], [], [], []
Check the DB version:
select * from v$version;
It is 11.2.
It issaid that For oracle 10.2.0.3 install patch for BUG#5579764. The bug has been fixed in11g.
Follow instructions of Metalink Note 390249.1 and delete column histograms.
But it seems it did not fix on windows platform:
try the workaround providedfor oracle 10.2.0.3:
execute dbms_stats.delete_schema_stats('BUSINESSDATA');
It is resolved.