SQL SERVER – 2005 Retrieve Configuration of Server

Few days ago I was asked what is our SQL Server’s configuration. I provided way more information then they requested.

Run following script and it will provide all the information about SQL Server . SQL Server provides in detailed information if Advanced Options are turned on. It is very clear from this that maximum number of object SQL Server can have is 2,147,483,647. It is considerably very big number. I am not worried yet about my database reaching its limit.
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
EXEC sp_configure
GO
EXEC sp_configure 'show advanced options', 0
GO

To change any configuration run following script using values from the NAME column of following result set. e.g. To change Resource Timeout run following script.
sp_configure 'show advanced options', 1
GO
RECONFIGURE
GO
sp_configure 'resource timeout', 100
GO
RECONFIGURE
GO

Results Set:
Configuration option ‘show advanced options’ changed from 0 to 1. Run the RECONFIGURE statement to install.
name minimum maximum config_value run_value
———————————– ———– ———– ———— ———–
Ad Hoc Distributed Queries 0 1 0 0
affinity I/O mask -2147483648 2147483647 0 0
affinity mask -2147483648 2147483647 0 0
Agent XPs 0 1 1 1
allow updates 0 1 0 0
awe enabled 0 1 0 0
blocked process threshold 0 86400 0 0
c2 audit mode 0 1 0 0
clr enabled 0 1 0 0
common criteria compliance enabled 0 1 0 0
cost threshold for parallelism 0 32767 5 5
cross db ownership chaining 0 1 0 0
cursor threshold -1 2147483647 -1 -1
Database Mail XPs 0 1 0 0
default full-text language 0 2147483647 1033 1033
default language 0 9999 0 0
default trace enabled 0 1 1 1
disallow results from triggers 0 1 0 0
fill factor (%) 0 100 0 0
ft crawl bandwidth (max) 0 32767 100 100
ft crawl bandwidth (min) 0 32767 0 0
ft notify bandwidth (max) 0 32767 100 100
ft notify bandwidth (min) 0 32767 0 0
index create memory (KB) 704 2147483647 0 0
in-doubt xact resolution 0 2 0 0
lightweight pooling 0 1 0 0
locks 5000 2147483647 0 0
max degree of parallelism 0 64 0 0
max full-text crawl range 0 256 4 4
max server memory (MB) 16 2147483647 2147483647 2147483647
max text repl size (B) 0 2147483647 65536 65536
max worker threads 128 32767 0 0
media retention 0 365 0 0
min memory per query (KB) 512 2147483647 1024 1024
min server memory (MB) 0 2147483647 0 0
nested triggers 0 1 1 1
network packet size (B) 512 32767 4096 4096
Ole Automation Procedures 0 1 0 0
open objects 0 2147483647 0 0
PH timeout (s) 1 3600 60 60
precompute rank 0 1 0 0
priority boost 0 1 0 0
query governor cost limit 0 2147483647 0 0
query wait (s) -1 2147483647 -1 -1
recovery interval (min) 0 32767 0 0
remote access 0 1 1 1
remote admin connections 0 1 0 0
remote login timeout (s) 0 2147483647 20 20
remote proc trans 0 1 0 0
remote query timeout (s) 0 2147483647 600 600
Replication XPs 0 1 0 0
scan for startup procs 0 1 0 0
server trigger recursion 0 1 1 1
set working set size 0 1 0 0
show advanced options 0 1 1 1
SMO and DMO XPs 0 1 1 1
SQL Mail XPs 0 1 0 0
transform noise words 0 1 0 0
two digit year cutoff 1753 9999 2049 2049
user connections 0 32767 0 0
user options 0 32767 0 0
Web Assistant Procedures 0 1 0 0
xp_cmdshell 0 1 1 1

Configuration option ‘show advanced options’ changed from 1 to 0. Run the RECONFIGURE statement to install.
Reference : Pinal Dave (https://blog.sqlauthority.com)

SQL Scripts
Previous Post
SQL SERVER – NorthWind Database or AdventureWorks Database – Samples Databases
Next Post
SQL SERVER – Disadvantages (Problems) of Triggers

Related Posts

4 Comments. Leave new

  • hi

    I want to copy a database with asp.net
    i use smo object .
    but i want to copy a database with attach and deattach mechanism.
    when i try to attach a copied mdf file by difference name . sqlserver can’t attach db . error message says db have a similar name whith first db.

    your site is very usefull for me.

    Thanks.

    Reply
  • Configuration option ‘show advanced options’ changed from 0 to 1. Run the RECONFIGURE statement to install.

    because of the above i am not able to excute the query.
    please help

    Reply
  • Hello Pinal,

    Can you please provide some details why we use
    SP_CONFIGURE ‘remote proc trans’ ?

    Thanks

    Reply

Leave a Reply