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
To read the rest of this article, and access thousands of other articles, we ask you to register on the site and subscribe to our newsletters.
We ask you to register on the site and subscribe to our newsletters. Subscribing to our newsletters gets you:
We ask that you give the newsletter a try for a week. Over 200,000 SQL Server Professionals a day find it entertaining and useful. If not, you are welcome to unsubscribe at anytime.
Steve Jones Editor, SQLServerCentral.com