Turns off (disables) the specified trace flag(s).
DBCC TRACEOFF (trace# [,...n])
Trace flags are used to customize certain characteristics controlling how Microsoft® SQL Server™ operates.
DBCC TRACEOFF returns this result set (message):
DBCC execution completed. If DBCC printed error messages, contact your system administrator.
DBCC TRACEOFF permissions default to members of the sysadmin fixed server role only, and are not transferable.
This example disables the display of line numbers in syntax errors.
DBCC TRACEOFF (106)
GO
Trace Flags | DBCC |