Microsoft KB Archive/224986

From BetaArchive Wiki
Knowledge Base


FIX: Query Analyzer Truncates Output of COMPUTE Clause at Six Characters

Article ID: 224986

Article Last Modified on 3/14/2006



APPLIES TO

  • Microsoft SQL Server 7.0 Standard Edition



This article was previously published under Q224986

BUG #: 53975 (SQLBUG_70)

SYMPTOMS

When viewing results in SQL Query Analyzer, the output of a COMPUTE clause is truncated at six characters and may show incorrect information. This is a display problem only. If the query is run from another tool, such as ISQL.exe or OSQL.exe, the correct output is displayed.

WORKAROUND

Use another query tool, such as ISQL.exe or OSQL.exe to run the query.

STATUS


Microsoft has confirmed this to be a problem in SQL Server 7.0. This problem has been corrected in U.S. Service Pack 1 for Microsoft SQL Server 7.0. For more information, click the following article number to view the article in the Microsoft Knowledge Base:

232570INF: How to Obtain Service Pack 1 for Microsoft SQL Server 7.0 and Microsoft Data Engine (MSDE) 1.0


For more information, contact your primary support provider.

MORE INFORMATION

The following script demonstrates the problem:

create table t1 (c1 int not null, c2 char(1) not null)
go
insert t1 values (500000, 'a')
insert t1 values (500000, 'a')
insert t1 values (500001, 'b')
insert t1 values (500001, 'b')

select sum(c1) from t1 compute sum(sum(c1))
                

In Query Analyzer, the following is displayed for the results:

----------- 
2000002     


sum
===========
200000
                

Note that the final 2 is truncated from the sum in the COMPUTE clause.


Additional query words: compute truncate display graphical output isqlw.exe

Keywords: kbbug kbfix KB224986