MattWoberts
Programmer
Hi,
I have a view called "MyView" and a table "MyTable". The table contains a history of versions for each row returned from MyView, and I need to join on the most recent version, so I have this SQL:
But, when I run it, I get this horrible error:
“[Oracle][ODBC][Ora]ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], []”
Does anyone know what this means or what I might have done?
Thanks in advance!!!
I have a view called "MyView" and a table "MyTable". The table contains a history of versions for each row returned from MyView, and I need to join on the most recent version, so I have this SQL:
Code:
Select distinct MyView.*, MyTable.Version_NO
from MyView left outer join MyTable on MyView.Procedure_ID = MyTable.Procedure_ID and MyView.AppUser_ID = MyTable.AppUser_ID and MyTable.VersionNo =
(Select max(VersionNo) from MyTable where Procedure_ID = MyView.ID and AppUser_ID = MyTable.AppUser_ID)
But, when I run it, I get this horrible error:
“[Oracle][ODBC][Ora]ORA-00600: internal error code, arguments: [qctcte1], [0], [], [], [], [], [], []”
Does anyone know what this means or what I might have done?
Thanks in advance!!!