News We Recently Launched AD Migrator and AD Reporter.
Enable Dedicated Administrator Connection in SQL Server Database by SSMS or by T-SQL command
DAC stands for Dedicated Administrator Connection. This feature got introduced in SQL Server 2005. This diagnostic connection basically helps users to remain connected and perform fundamental queries on troubleshooting when some severe performance issues occur. Only users with sysadmin role permission can use Dedicated Administrator Connection.
In order to enable the DAC in SQL Server, users can choose any of the below methods:
To enable DAC with the help of SSMS, follow these steps:
Run the scripts to enable DAC through TSQL:
Use master
GO
/* 0 = Allow Local Connection, 1 = Allow Remote Connections*/
sp_configure 'remote admin connections', 1
GO
RECONFIGURE
GO