BUG: Using Subquery on MIPS Can Cause Thread Level AVLast reviewed: May 2, 1997Article ID: Q150187 |
The information in this article applies to:
SYMPTOMSIf you use a subquery on SQL Server 6.0 running on a MIPS computer, it can cause a thread level access violation (AV).
CAUSEThe following criteria must be present for the problem to occur:
problem.4. The amount of data in these tables is critical.
WORKAROUNDUse a join to replace the inner subquery, such as the following, where t is table, c is column: select my_result= (select count(*) from t2,t3 where t2.c1=t1.c1 and t2.c1=t3.c1)from t1
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.
|
Additional query words:
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |