Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Faking an ORA-600
Have you tried a search on metalink for
8.1.6.3 and ORA-00600 in the Advanced
search section of the Bug database ?
Offhand, this might work:
create a table with 3 columns
create table t1 as
select trunc((rownum-1)/100,0) b1, mod(rownum,100) b2, rpad(rownum,100) v1 from all_objects where rownum <= 2000
Create a two column bitmap index
create bitmap index t1_bx on t1(b1,b2)
Select on b1 with an equality and b2 with a range scan.
select * from t1
where b1 = 10 and b2 between 40 and 80 ;
I think this one breaks an 8.1.6 database.
Regards
Jonathan Lewis
http://www.jlcomp.demon.co.uk
Coming soon a new one-day tutorial:
Cost Based Optimisation
(see http://www.jlcomp.demon.co.uk/tutorial.html )
Next Seminar dates:
(see http://www.jlcomp.demon.co.uk/seminar.html )
____England______January 21/23
The Co-operative Oracle Users' FAQ
http://www.jlcomp.demon.co.uk/faq/ind_faq.html
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: Jonathan Lewis INET: jonathan_at_jlcomp.demon.co.uk Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-LReceived on Thu Dec 19 2002 - 15:19:30 CST
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
![]() |
![]() |