I was recently asked following question:
“How I check all the advanced configuration 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.
Reference: Pinal Dave (http://blog.sqlauthority.com)












We can also query below view to check advanced option.
SELECT * FROM sys.configurations
Thanks for the script, always used the one pinal mentioned in the article.
[...] SQL SERVER – Check Advanced Server Configuration [...]