BUG: Web Assistant Stored Procedure Requires an Output ParameterLast reviewed: August 19, 1997Article ID: Q172628 |
The information in this article applies to:
SYMPTOMSWithin the Web Assistant, when a stored procedure is chosen as the query to use for the Web page, the following message may be returned:
The selected stored procedure requires an output parameter, which cannot be supplied. Please select a different stored procedure. CAUSEThe SQL script that has the CREATE PROCEDURE command has some comments above it, and a word that begins with the string "output" exists within the comments section. The following is an example of such a script:
Use pubs Go If exists (select * from sysobjects where id = object_id ('myproc')) drop procedure myproc go /* Comments with the string output(s) */ create procedure myproc as select * from authors go WORKAROUNDTo work around this problem, do either of the following:
STATUSMicrosoft has confirmed this to be a problem in Microsoft SQL Server Version 6.5. 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. |