FIX: Five-way Table Join w/OR May Cause Handled ExceptionLast reviewed: April 8, 1997Article ID: Q152264 |
The information in this article applies to:
SYMPTOMSA five-way (or more) table join with a search clause introduced by an OR clause may cause handled exception which terminates the client thread.
WORKAROUNDRewrite the query such that the rows not in the join qualify for the query because of the OR clause.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server versions 6.0 and 6.5. This problem has been corrected in U.S. Service Pack 3 for Microsoft SQL Server version 6.0, and in U.S. Service Pack 1 for Microsoft SQL Server version 6.5. For more information, contact your primary support provider.
MORE INFORMATIONHere is an example of the type of query that would cause this problem:
SELECT * FROM A, B, C, D, E WHERE A.id = B.id AND B.bid = C.bid AND C.cid = D.cid AND D.did = E.did OR A.column1 = "test" |
Additional query words: multiple access violation
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |