BUG: Sp_Cursoropen Returns Error for a UNION QueryLast reviewed: April 9, 1997Article ID: Q161171 |
The information in this article applies to:
SYMPTOMSIf you open an engine cursor using sp_cursoropen on a stored procedure that contains a UNION query, you will receive the following error:
Msg 16937, Level 16, State 1 "Cannot open a cursor on a stored procedure that has anything other than a single select statement in it" WORKAROUNDTo work around this problem, use the following steps:
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.
MORE INFORMATIONA server cursor can only be created on a stored procedure that contains a single SELECT statement. However, a UNION always produces a consistent single result set, and should be allowed as a static cursor, as documented in the SQL Server ODBC driver Help. ODBC applications will have problems running SQL statements that contain the UNION clause, because the "Generate Stored Procedure for Prepared Statement" option in the Datasource setup is enabled by default. This results in the creation of temporary stored procedures for every prepared statement, causing an error on opening a server cursor.
|
Additional query words: cursors
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |