BUG: SELECT with More than 125 SUM Columns Can GP Fault ServerLast reviewed: May 5, 1997Article ID: Q103748 |
The information in this article applies to:
NT: 446 (4.2) SYMPTOMSA SELECT statement with more than 125 SUM columns of INT NULL will cause SQL Server to get a general protection fault (GP fault).
Example ------- select sum(c2), sum(c3), sum(c4), ... sum(c124), sum(c125), sum(c126) from t1 group by c1 WORKAROUNDTo avoid this problem, you can split the table into multiple tables and do a join, or you can do an inner join on the single table.
STATUSMicrosoft has confirmed this to be a problem in SQL Server version 4.2a for OS/2 and Microsoft SQL Server version 4.2. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.
|
Additional query words: kernel
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |