SQL SERVER Dedicated Administrator Connection (DAC) enabled and how to connect.
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhJjE4DOgcygFlqOyrgxf4NiNEiEk7mSAYtz57PhsZ-S4zHpleyG6Nfo0ih3AF910Y8ZDF9j2AGZKSZJ1l3GV8GgspVDar4M6hU2EiLfqgYw4i8cJmrCxbQqpUS-9IVEWBZAGgin0fNVQw/s320/DAC.jpg)
In the SQL Server 2000 and earlier days it was all too often I found myself resorting to a server reboot to get control of my database server or access to a single database that had an issue. One of the best additions to the SQL Server feature set was the Dedicated Administrator Connection (DAC). Prior to this being a part of the platform, an overloaded instance might not even allow a DBA to connect and perform any actions. So lets look at if DAC is enabled and also look at determining who is connecting to your instance with the DAC. In general, the DAC should be left open on your instances and not used. If you have used it in an emergency, it's possible that you might reconnect to that instance as a part of your daily work and use the DAC. If someone else had the need to connect in an emergency, they wouldn't be able to since only one connection is allowed. How to making the Connection to DAC. By default the DAC is only available from the server itself. If you want to al...