Connect with Management Studio
With
Management Studio, a dedicated administrator connection cannot be opened with the usual connection method. The following error is thrown.
Dedicated administrator connections are not supported via SSMS as it establishes multiple connections by design. (Microsoft.SqlServer.Management.SqlStudio.Explorer)
A dedicated administrator connection needs to be established with a Database Engine Query. This is found in the menu File -> New -> Database Engine Query:
When the connection dialog opens, the server name needs to be prefixed with admin:
:
Allow connections from any machine in the network
By default, dedicated administrator connections are only allowed from a machine where the
instance is running (because it listens on the
loop back device 192.168.0.1
port 1434). In order to make a DAC from another machine in a network, the
remote admin connections Server Configuration Option must be set:
sp_configure 'remote admin connection', 1
go
reconfigure
go