Thank this author by sharing:
By Dale Elizabeth Corey, 2006/09/29 (first published: 2004/09/28)
Did you ever wonder what the heck all those property settings meant in SQL Server 2000’s client tool, Enterprise Manager, and whether or not you really needed to tweak them? What are the key points? It never hurts to review.
The first question to answer is, “What is the fastest way to get to the Configuration Properties?” That’s easy! Just open Enterprise Manager, and from the main menu, click on Tools => “SQL Server Configuration Properties…”. You can also right click the Server Group (i.e., (local) (Windows NT)) and click on Properties. For more advanced configuration properties, you can use stored procedures in Query Analyzer.
The General Tab
So let’s talk about the first tab in Enterprise Manager’s SQL Server Configuration Properties, the General tab, in the Configuration Properties window (see Figures 1, 2, 3, and 4 below).
Figure 1
Figure 2
Figure 3
Figure 4
What are the key points of the General tab?
The Memory Tab
Figure 5
Key points (Figure 5):
Processor tab
Figure 6
Key points (Figure 6):
Security Tab
Figure 7
Key points (Figure 7):
Connections Tab
Figure 8
Key points (Figure 8):
SELECT @@max_connections
However, you are probably better off adding memory and/or clustering and let SQL Server determine the maximum number of user connections.
Server Settings Tab
Figure 9
Key points (Figure 9):
Database Settings Tab
Figure 10
Key Points (Figure 10):
Replication Tab
Figure 11
Figure 12
Figure 13
Figure 14
Key Points (Figure 11):
Active Directory Tab
Figure 15
Key Points (Figure 15):
Conclusion
It is nice to have options like the Configuration Properties wrapped up into a nutshell. Sometimes the options can seem “under described” and some of us tend to click before really know whether it’s a good option or not. Hopefully, these Key Points will help you along. Please be aware that there is a stored procedure (sp_configure) in Query Analyzer that will give you access to more advanced options for configuration purposes. Try it out when you get a chance:
exec sp_configure ‘show advanced options’, 1 go
References Used:
SQL Server 2000 Administrator's Pocket Consultant: Configuring and Tuning Microsoft SQL Server. (2001, July 19). Retrieved August 25, 2004 from http://www.microsoft.com/technet/prodtechnol/sql/2000/books/c02ppcsq.mspx
Server configuration change-URGENT
A properly configured SQL Server can mean the difference between a sluggish server and one that runs...
SQl server Configuration error
configuration
Report Server configuration settings
As a member of SQLServerCentral, you get free access to loads of fresh content: thousands of articles and SQL scripts, a library of free eBooks, a weekly database news roundup, a great Q & A platform… And it’s our huge, buzzing community of SQL Server Professionals that makes it such a success.
Join us!
Steve Jones Editor, SQLServerCentral.com