SQL Server Performance, DBA Best Practices & Enterprise Data Solutions | MyTechMantra
Home » SQL Server » Different Ways to Enable Dedicated Administrator Connection in SQL Server

Different Ways to Enable Dedicated Administrator Connection in SQL Server

Microsoft introduced Dedicated Administrator Connection (DAC) feature in SQL Server 2005 and higher versions. Using DAC feature a database administrator can connect to an SQL Server Instance when SQL Server stops responding to normal connections. During such scenarios using DAC feature a DBA can connect to the instance to troubleshoot and kill processes which are causing issues.

Dedicated Administrator Connection [DAC] SQL Server

By default, Dedicated Administrator Connection feature is disabled in SQL Server. It is always a best practice to enable DAC on all SQL Server Instance so that during emergencies you can use this feature to troubleshoot the SQL Server Instance. At any given time only one DAC connection is allowed.



How to Enable Dedicated Administrator Connection (DAC) in SQL Server

There are two different methods by which a DBA can enable DAC feature in SQL Server. First method is to use the TSQL Script. Second method by using SQL Server Management Studio.

How to Enable Dedicated Administrator Connection in SQL Server Using sp_configure

/*How to Enable Dedicated Administrative Connection in SQL Server Using TSQL*/
Use master
GO

sp_configure 'remote admin connections', 1 
GO

RECONFIGURE WITH OVERRIDE 
GO

It is always a Best Practice to enable Dedicated Administrator Connection (DAC) on all SQL Server Instance so that during emergencies you can use this feature to troubleshoot the SQL Server Instance.

Only members of the SQL Server sysadmin role can connect using the DAC



How to Enable Dedicated Administrator Connection in SQL Server Using SQL Server Management Studio

DBA can also enable DAC feature using SQL Server Management Studio.

Step 1: Connect to SQL Server Instance using SSMS and then right click the Server and select FACETS from the drop down menu as shown in the snippet below.

How to Enable Dedicated Administrator Connection in SQL Server Using SSMS


Step 2: In View Facets window you need choose the Facet as “Surface Area Configuration” as shown in the below snippet. Then, under Facet Properties choose value as “True” for RemoteDacEnabledas highlighted. Click OK to save the changes.

Remote DAC Enabled Facets in SQL Server


Conclusion

In this article you have seen different ways by which you can enable dedicated administrator connection in SQL Server.

Next Steps

Ashish Kumar Mehta

Ashish Kumar Mehta is a distinguished Database Architect, Manager, and Technical Author with over two decades of hands-on IT experience. A recognized expert in the SQL Server ecosystem, Ashish’s expertise spans the entire evolution of the platform—from SQL Server 2000 to the cutting-edge SQL Server 2025.

Throughout his career, Ashish has authored 500+ technical articles across leading technology portals, establishing himself as a global voice in Database Administration (DBA), performance tuning, and cloud-native database modernization. His deep technical mastery extends beyond on-premises environments into the cloud, with a specialized focus on Google Cloud (GCP), AWS, and PostgreSQL.

As a consultant and project lead, he has architected and delivered high-stakes database infrastructure, data warehousing, and global migration projects for industry giants, including Microsoft, Hewlett-Packard (HP), Cognizant, and Centrica PLC (UK) / British Gas.

Ashish holds a degree in Computer Science Engineering and maintains an elite tier of industry certifications, including MCITP (Database Administrator), MCDBA (SQL Server 2000), and MCTS. His unique "Mantra" approach to technical training and documentation continues to help thousands of DBAs worldwide navigate the complexities of modern database management.

Follow us

Don't be shy, get in touch. We love meeting interesting people and making new friends.