Hibernate version:
NHibernate-1.2.0.GA
Name and version of the database you are using:
Oracle 9i
For a web app for a client of ours, we are using NHibernate with ASP.Net 2.0 and Oracle 9i. Mostly, the app is working fine, except that it will occasionally fail with Oracle errors like this:
Code:
ORA-00600: internal error code, arguments: [kghfrf2], [0x800003FB00067A68], [], [], [], [], [], []
ORA-00600: internal error code, arguments: [17182], [0x800003FA80003088], [], [], [], [], [], []
ORA-00600: internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]
(this actually comes back like this, with %s instead of useful arguments)
From researching this, I don't think this is our app's fault. This error (ORA-00600) is apparently the Oracle equivalent of a "kernel panic". Our clients are moving from an Oracle/Apache set up, to Oracle/IIS, and ours is the first major app to use the new servers. When we've told them that this is something they should contact Oracle support about, they've either ignored us or not told us the what Oracle has said. We don't see this error on our locally-maintained dev servers (though we use 10g, not 9i), and the sql calls NHibernate is performing (when we can figure it out) is simple stuff, like "select * from AdminUsers where username = ?" on the login page.
However, I don't know what else to do to resolve this, so I thought I'd ask here, has anyone ever seen NHibernate cause this kind of problem? Or something similar? If so, what was the issue? If not, what can I do to figure out what is wrong?
Thanks