Error ORA-00600 [message #637880] |
Thu, 28 May 2015 04:43 |
|
amjad_alahdal
Messages: 102 Registered: October 2013 Location: Saudi Arabia
|
Senior Member |
|
|
Hello guys,
I have created a form and I wanted to check a table name so,
inside a button trigger I used this command
select tname into x from tabs
where tname like('%1111%');
I am getting this error :
ora-00600: internal error code arguments: [17069] ,[84498400],,,,,,,
I am using Oracle developer 6i
|
|
|
|
|
|
|
Re: Error ORA-00600 [message #637891 is a reply to message #637888] |
Thu, 28 May 2015 05:48 |
|
amjad_alahdal
Messages: 102 Registered: October 2013 Location: Saudi Arabia
|
Senior Member |
|
|
I wrote it in a button trigger to check a name of table because I want to use the table name.
declare
x varchar2(50) ;
begin
select tname into x
from tabs
where tname like (%1111%) ;
if x is null
then message('NO such table exist') ;
end if ;
[Updated on: Thu, 28 May 2015 05:50] Report message to a moderator
|
|
|
|
|