I want to find all the cursors that has benn declared
What should I use
sp_cursor_list???
Thanks in advance
Printable View
I want to find all the cursors that has benn declared
What should I use
sp_cursor_list???
Thanks in advance
try
Code:SELECT *
FROM master.dbo.syscursors
Thnx