SQL SERVER – Check Advanced Server Configuration

I was recently asked following question about how to Check Advanced Server Configuration.

“How I check all the advanced configurations of the SQL Server?”

EXEC sp_configure 'Show Advanced Options', 1;
GO
RECONFIGURE;
GO
EXEC sp_configure;

Running above script will return all the advanced server configurations.

If you run above script you will find following result set.

SQL SERVER - Check Advanced Server Configuration sp_configure-500x492

SQL Server Configuration Manager is a tool to manage the services associated with SQL Server, to configure the network protocols used by SQL Server, and to manage the network connectivity configuration of SQL Server client computers.  SQL Server Configuration Manager performs additional configuration, such as setting permissions in the Windows Registry so that the new account can read the SQL Server settings. The SQL Server Configuration Manager also allows you to view information about failover cluster instances.

The result which you see is based on my personal computer. In your case, it may be a bit different based on the value. Let me know if you have ever found this particular query useful. I will be happy to know your thoughts in the comments section of this blog post. I am very eagerly waiting for your feedback about this subject.

Happy Coding!

Reference: Pinal Dave (https://darkslategrey-bat-805937.hostingersite.com)

SQL Scripts, SQL Server, SQL Server Configuration, SQL Stored Procedure
Previous Post
SQLAuthority News – 2 Sessions at TechInsight 2010 – June 29 – July 1, 2010
Next Post
SQL Tips – 5 SQL Server Best Practices

Related Posts

Leave a Reply