ORA-00600 Error
I have a rather complex SQL query that runs perfectly well (in TOAD and also in BIRT.
When I add parameters to the data set query, however, the report fails on running it.
The error shown in the RCP designer is "no data to read from socket", but the underlying error is an Oracle fatal error.
org.eclipse.birt.report.data.oda.jdbc.JDBCException:
SQL statement does not return a ResultSet object.
SQL error #1: ORA-00603: ORACLE server session terminated by fatal error
ORA-00600: internal error code, arguments: [17114], [0x00C1382A0], [], [], [], [], [], [], [], [], [], []
java.sql.SQLException: ORA-00603: ORACLE server session terminated by fatal error
ORA-00600: internal error code, arguments: [17114], [0x00C1382A0], [], [], [], [], [], [], [], [], [], []
I'm running against Oracle 11g, 11.2.0.2.0, and I've verified that the OJDBC6.JAR file is that version. I assume the problem's coming from the JDBC layer, but that doesn't help me particularly.
I'm going to try referencing the parameters in the table filter instead of pushing them into the data set query and see if I can get the report to work that way. However, this just blows my mind. Any suggestions would be helpful.
Richard