Skip to content

Latest commit

 

History

History
85 lines (70 loc) · 2.82 KB

File metadata and controls

85 lines (70 loc) · 2.82 KB
title DBCC USEROPTIONS (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 11/14/2017
ms.prod sql
ms.prod_service sql-database
ms.reviewer
ms.technology t-sql
ms.topic language-reference
f1_keywords
DBCC USEROPTIONS
DBCC_USEROPTIONS_TSQL
USEROPTIONS_TSQL
USEROPTIONS
dev_langs
TSQL
helpviewer_keywords
DBCC USEROPTIONS statement
active SET options
SET statement, active SET options
ms.assetid 565ab112-7af1-4c18-a579-07cdb332f539
author pmasl
ms.author umajay

DBCC USEROPTIONS (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-asdb-xxxx-xxx-md]

Returns the SET options active (set) for the current connection.

Topic link icon Transact-SQL Syntax Conventions

Syntax

DBCC USEROPTIONS  
[ WITH NO_INFOMSGS ]  

Arguments

NO_INFOMSGS
Suppresses all informational messages that have severity levels from 0 through 10.

Result Sets

DBCC USEROPTIONS returns a column for the name of the SET option and a column for the value of the option (values and entries may vary):

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.

Remarks

DBCC USEROPTIONS reports an isolation level of 'read committed snapshot' when the database option READ_COMMITTED_SNAPSHOT is set to ON and the transaction isolation level is set to 'read committed'. The actual isolation level is read committed.

Permissions

Requires membership in the public role.

Examples

The following example returns the active SET options for the current connection.

DBCC USEROPTIONS;  

See Also

DBCC (Transact-SQL)
SET Statements (Transact-SQL)
SET TRANSACTION ISOLATION LEVEL (Transact-SQL)