DBCC USEROPTIONS (Transact-SQL)
適用於:SQL ServerAzure SQL DatabaseAzure SQL 受控執行個體
傳回目前連接在使用中 (已設定) 的 SET 選項。
Syntax
DBCC USEROPTIONS
[ WITH NO_INFOMSGS ]
注意
若要檢視 SQL Server 2014 與更早版本的 Transact-SQL 語法,請參閱舊版文件。
引數
NO_INFOMSGS
抑制所有嚴重性層級在 0 到 10 的參考用訊息。
結果集
DBCC USEROPTIONS
會針對 SET 選項的名稱傳回一個資料行,以及針對該選項的值傳回一個資料行 (值和項目可能不同):
Set Option Value`
---------------------------- ---------------------------`
textsize 64512
language us_english
dateformat mdy
datefirst 7
lock_timeout -1
quoted_identifier SET
arithabort SET
ansi_null_dflt_on SET
ansi_warnings SET
ansi_padding SET
ansi_nulls SET
concat_null_yields_null SET
isolation level read committed
(13 row(s) affected)
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
備註
當資料庫選項 READ_COMMITTED_SNAPSHOT
設定為 ON 且交易隔離等級設定為 read committed
時,DBCC USEROPTIONS
會報告 read committed snapshot
的隔離等級。 實際的隔離等級為讀取認可。
權限
需要 public 角色的成員資格。
範例
下列範例會針對目前連接傳回使用中的 SET 選項。
DBCC USEROPTIONS;