× 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.



This SQL select statement containing an 'OR' within the Where clause will not run to completion, hangs until cancelled...

SELECT PRMNBR, EVTDTE, EVTTME, USRID, EVTRMK
FROM P1FILES.KSEVT E
WHERE
(EVTRMK LIKE 'CIS CONTRIB. ACCT #%'
AND EXISTS(SELECT * FROM P1FILES.KSEVT
WHERE PRMNBR = E.PRMNBR AND EVTID <> E.EVTID
AND EVTRMK LIKE 'CIS CONTRIB. ACCT #%'))
OR
(EXISTS(SELECT * FROM P1FILES.KSEVT
WHERE PRMNBR = E.PRMNBR AND EVTID > E.EVTID
AND EVTRMK LIKE 'CIS CONTRIB. ACCT #%')
AND
EXISTS(SELECT * FROM P1FILES.KSEVT
WHERE PRMNBR = E.PRMNBR AND EVTID < E.EVTID
AND EVTRMK LIKE 'CIS CONTRIB. ACCT #%'))


However, breaking the statement above apart and running the two parts separately does work...

Using the statement containing only the first portion of the Where clause, left of the 'OR', returns 390 rows...

SELECT PRMNBR, EVTDTE, EVTTME, USRID, EVTRMK
FROM P1FILES.KSEVT E
WHERE
(EVTRMK LIKE 'CIS CONTRIB. ACCT #%'
AND EXISTS(SELECT * FROM P1FILES.KSEVT
WHERE PRMNBR = E.PRMNBR AND EVTID <> E.EVTID
AND EVTRMK LIKE 'CIS CONTRIB. ACCT #%'))

Using the statement containing only the second portion of the Where clause, right of the 'OR', returns 1738 rows...

SELECT PRMNBR, EVTDTE, EVTTME, USRID, EVTRMK
FROM P1FILES.KSEVT E
WHERE
(EVTRMK LIKE 'CIS CONTRIB. ACCT #%'
AND EXISTS(SELECT * FROM P1FILES.KSEVT
WHERE PRMNBR = E.PRMNBR AND EVTID <> E.EVTID
AND EVTRMK LIKE 'CIS CONTRIB. ACCT #%'))

Does anyone know why this won't work with the OR ???????

This is being run on a V5R4M5 system...


[Description: Description: nwnatural]
Kenneth E. Graap | Systems Administrator
keg@xxxxxxxxxxxxx<mailto:keg@xxxxxxxxxxxxx> 503-226-4211 x5537
http://www.linkedin.com/in/kennethgraap


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.