Microsoft KB Archive/246565

From BetaArchive Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Knowledge Base


FIX: Non-Compute Query Preceding Compute Query May Cause OSQL to Stop Responding

Article ID: 246565

Article Last Modified on 3/14/2006



APPLIES TO

  • Microsoft SQL Server 7.0 Standard Edition



This article was previously published under Q246565

BUG #: 54999 (SQLBUG_70)

SYMPTOMS

You have a script that contains two queries. The queries are not separated by a GO, both queries label column headers and the second query contains a COMPUTE clause. When you run this script using Query Analyzer, the second result set will not include the column headers. When you run the query using OSQL.exe the column headers will be returned, but you will see a dialog box that contains the following message:

osql.exe has generated errors and will be closed by Windows. You will need to restart the program.

An error log is being created.

WORKAROUND

You can use any one of the following workarounds:

  • Place a GO after the first query.
  • Remove the COMPUTE clause.
  • Run the script using ISQL.exe.


STATUS

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

254561 INF: How to Obtain Service Pack 2 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 this problem:

SELECT 'TEST' AS Header
SELECT category,Count(*) AS 'Header'
FROM master..sysobjects
GROUP BY category
COMPUTE sum(category)
                

Keywords: kbbug kbfix KB246565