SQL SERVER – List All Server Wide Configurations Values

Just a day ago, while working on one of the project, I needed to see what is the two digit year cutoff of my current SQL Server. I did not remember what was the exact syntax to search for the same so I ran following query to list all server wide configurations. While looking at quickly I found out value of two digit year cutoff on line 19th. A small but very important script to save for getting server information.

SELECT *
FROM sys.configurations;

I have run this command on SQL Server 2008, SQL Server 2012, SQL Server 2014, SQL Server 2016 and few of the information may be different than SQL Server 2005.

I would like to know which version of the SQL Server are you running and what is the output are you getting for the above script. This is going to be very interesting to know.

Here is the output, which I get when run above script on SQL Server 2016. I got around 76 rows as a result set.

SQL SERVER - List All Server Wide Configurations Values ss2016-config-800x429

Here is the inside scoop, when I go to the performance tuning engagement, I use the same script to identify the various settings of the server.

Reference: Pinal Dave (https://blog.sqlauthority.com)

SQL Scripts, SQL Server, SQL Stored Procedure, SQL System Table
Previous Post
SQL SERVER – Reasons to Backup Master Database – Why Should Master Database Backedup
Next Post
SQL SERVER – Find Current Location of Data and Log File of All the Database

Related Posts

Leave a Reply