程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> 其他數據庫知識 >> 更多數據庫知識 >> SqlServer中查看當前Open的Cursor方法,sqlservercursor

SqlServer中查看當前Open的Cursor方法,sqlservercursor

編輯:更多數據庫知識

SqlServer中查看當前Open的Cursor方法,sqlservercursor


遇到錯誤:A cursor with thename ' ' already exists,想要看是什麼代碼導致的。找到下面幾種方法.

--測試聲明Cursor並且打開
DECLARE vend_cursor CURSOR
  FOR SELECT * FROMPurchasing.Vendor
OPEN vend_cursor
FETCH NEXTFROMvend_cursor;
 
--使用下面的三種方法都可以
SELECT ec.session_id,ec.name,ec.properties,ec.creation_time,ec.is_open,ec.writes,ec.reads,t.text
FROM sys.dm_exec_cursors(0)ec
CROSS APPLYsys.dm_exec_sql_text(ec.sql_handle)t
 
dbcc activecursors(0)
 
SELECT *FROMMASTER..SYSCURSORS

結果:

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved