BUG: Sp_Cursoropen Returns Error for a UNION QueryID: Q161171
|
If 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"
To work around this problem, use the following steps:
Microsoft 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.
A 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
Keywords : kbusage SSrvStProc kbbug6.50
Version : 6.5
Platform : WINDOWS
Issue type :
Last Reviewed: April 7, 1999