SQL Server DBA, Developer, Architect, Author, Presenter
Tuesday, August 25, 2015
Are remote admin connections enabled?
How do I check if remote admin connections are enabled?
select case when value = 1 then 'Yes' else 'No' end as [Remote Admin Connections Enabled] from sys.configurations where name = 'remote admin connections' ;
No comments:
Post a Comment