BUG: Query with Join in Subselect May Cause Handled ExceptionLast reviewed: May 5, 1997Article ID: Q152263 |
The information in this article applies to:
SYMPTOMSA query with a subselect that contains a join may cause a handled exception that terminates the client connection.
WORKAROUNDRewrite the query, possibly using a normal join instead of the subselect.
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server version 6.0. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
MORE INFORMATIONHere is an example of a query that can cause this problem:
SELECT A.column1 FROM A, B WHERE A.id1 = B.id1 AND A.id2 = B.id2 AND A.column1 IN (SELECT A0.column1 FROM A A0, B B0 WHERE A0.id1 = B0.id1) |
Additional query words: access violation
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |