BUG: SQL Admin: PRINT Not Working in Stored ProcedureLast reviewed: April 28, 1997Article ID: Q89935  | 
	
	
The information in this article applies to:
 
 SYMPTOMSWhen a stored procedure has PRINT as the last statement in it, SQL Administrator does not output the results of the PRINT statement unless there is a GO command after the stored procedure call in the query window. For example, open a query window and create a stored procedure similar to the following: 
 create procedure test as select count(*) from sysobjects Print "Hello"Now, open another query window and type: 
 testThe output is: 
 186This is the result of the SELECT query. The output of the PRINT statement does not appear. Now, clear the query window and reexecute the stored proc by typing: 
 testThis time the output is: 
 Hello 186The output of the PRINT statement during the previous execution of test appears now. However, executing the following 
 test gowill produce the following output, which is correct: 
 186 Hello STATUSMicrosoft has confirmed this to be a problem in SQL Server version 4.2 for OS/2. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available. 
  | 
	
	Additional query words: stored procedure sql administrator 
 © 1998 Microsoft Corporation. All rights reserved. Terms of Use.  |