I'm using the latest version of the provider Oracle.ManagedDataAccess
targetting .Net Core.
When I execute the following SQL statement under Admin user:
DROP TABLE "MYUSER"."MYTABLE";
It throws this exception:
Oracle.ManagedDataAccess.Client.OracleException: 'ORA-00603: ORACLE server session terminated by fatal error ORA-00600: internal error code, arguments: [2032], [12585499], [12585499], [8192], [219], [255], [0], [56319], [], [], [], []'
Here is the full stackTrace:
Oracle.ManagedDataAccess.Client.OracleException (0x80004005): ORA-00603: ORACLE server session terminated by fatal error ORA-00600: internal error code, arguments: [2032], [12585499], [12585499], [8192], [219], [255], [0], [56319], [], [], [], [] at OracleInternal.ServiceObjects.OracleConnectionImpl.VerifyExecution(Int32& cursorId, Boolean bThrowArrayBindRelatedErrors, SqlStatementType sqlStatementType, Int32 arrayBindCount, OracleException& exceptionForArrayBindDML, Boolean& hasMoreRowsInDB, Boolean bFirstIterationDone) at OracleInternal.ServiceObjects.OracleCommandImpl.ExecuteNonQuery(String commandText, OracleParameterCollection paramColl, CommandType commandType, OracleConnectionImpl connectionImpl, Int32 longFetchSize, Int64 clientInitialLOBFS, OracleDependencyImpl orclDependencyImpl, Int64[]& scnFromExecution, OracleParameterCollection& bindByPositionParamColl, Boolean& bBindParamPresent, OracleException& exceptionForArrayBindDML, OracleConnection connection, OracleLogicalTransaction& oracleLogicalTransaction, Boolean isFromEF) at Oracle.ManagedDataAccess.Client.OracleCommand.ExecuteNonQuery() at System.Data.Common.DbCommand.ExecuteNonQueryAsync(CancellationToken cancellationToken)
The exception does not always happen, it is intermittent... I know that this exception means that there is a bug in the Oracle provider. Unfortunately, I do not have Oracle support. Does anyone have an idea why I'm having this exception?
UPDATE
I'm able to get the trace of the error that I get. Here is the link: https://gist.github.com/tanbchr/25a81146af2a9f346cc8c44d6555dc4d
User contributions licensed under CC BY-SA 3.0