× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



>3. Why would what seems like a pretty simple syntax change cause such
>drastic difference in response time?


Joe

The first with a IN statement would be done in one pass,   doing
sortof a "Lookup" compare of the values in the list.


The second has an OR statement,   One way the optimizer would do this is to
create a bitmap of both sides of the OR predicate then XOR to a final
bitmap.
(Not saying that is what it did, just that it could have taken this
route)

The Second method would build three bitmap indexes on the fly, the first
None.

John

------------------------------------------------------
select * from sccc1 a, sccc1 b
 where a.c1flag3 = 'V' and
 a.c1source in ('WRITE', 'READ')
 and a.c1kwid = b.c1prnt
 and b.c1source in ('SCREEN-REC', 'SCREEN-FILE')

select * from sccc1 a, sccc1 b
 where a.c1flag3 = 'V' and
 ((a.c1source = 'WRITE'
   and a.c1kwid = b.c1prnt
   and b.c1source = 'SCREEN-REC') or
 (a.c1source = 'READ'
   and a.c1kwid = b.c1prnt
   and b.c1source = 'SCREEN-FILE'))



As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.