Keeping Track of your SQL Servers with a DBA Configuration Repository

By:   |   Comments (10)   |   Related: More > Database Administration


Problem

SQL Server DBAs are often responsible for managing large number of database instances. Busy 24/7 operational DBA teams may look after hundreds of instances with widely different characteristics. As systems get added, modified or decommissioned from the fleet, database administrators need to keep track of everything they manage. This article talks about the concept of a Configuration Repository where DBAs can manage all the information related to their SQL Servers.

Solution

In larger organizations (often with dedicated DBA teams), the database server landscape is often quite colorful. To start with, the number of platforms in use can be a mixture from all major and little-known vendors. If SQL Server is a large part of that landscape, there could be a variety of scenarios too:

  • Top tier servers (like heavy-traffic, large OLTP systems) against smaller, less-known systems (perhaps hosting one or two legacy reports)
  • A mixture of the organization's own internal systems (HR/Payroll) and those belonging to external customers (joint ventures, hosting service etc.)
  • Systems located locally and systems spread across the globe.

Despite the variance, the task of a DBA remains the same: run each system with peak efficiency. And for that, the first thing the DBAs (or the DBA team) need to do is to understand exactly what systems are under their care. They need to know what's running in the network and with what configuration.

The concept of keeping track of servers isn't something new. Your IT team can already be using a CMDB (Configuration Management Database) to keep track of every piece of equipment in the environment. However, traditional CMDBs often don't have the level of granularity needed by the system administrator. It could very well say what rack and chassis a particular server belongs to and who's the owner, but it won't say if an out-of-support service pack is running there.

What the DBA then really needs is a special kind of repository. Something that would hold only SQL Server specific information and offer a quick navigation mechanism. As new servers are rolled out, records will be added to that list. As SQL configurations are changed, relevant records would be modified. When systems are decommissioned, corresponding rows would also be updated. The only users of this special kind repository would be the DBA team and its custodian would be the lead DBA.

I would like to call such a system a DBA Configuration Repository. I won't go into the details of physical implementation of such a system, but talk about the various pieces of information you can collect and put in there. In the following sections, I have divided these information into different categories.

Structure of the Configuration Repository

General Purpose Information

These are pieces of information that tells you what the SQL Server is used for, where does it fit in the network, how important it is for support purposes and so on.

  • Instance Name: This one is obvious but the most important piece. What's the name of the instance you are managing? For a named instance, use the full server and instance name convention (server_name\instance_name). For default instances, use the machine name. If a server has multiple instances, list all the instances.

  • Status: Another basic piece. Is this server live and in operation? Has this been rolled out but yet to be commissioned formally? Is it marked for decommissioning or has this been shut down completely?

  • Purpose: A very short description of what this server is used for. Ideally this will be a one-liner with as few words as possible (e.g. "Microsoft Project Server Back-end" or "Data Warehouse Reporting Server")

  • Usage: Is this a production or non-production system? If not production then what's the usage: a development box for the programmers? System Integration Testing (SIT) / User Acceptance Testing (UAT) / Quality Assurance (QA) or Staging Server?

  • Hosted Application: What systems or applications interface to this database server? Is it only one application or multiple applications? Examples can be a dedicated database server for a SharePoint farm as opposed to a shared instance hosting multiple client databases.

    A further breakdown of the hosted application field can be done with a secondary field that goes into specifics. An ERP system can have multiple modules; the particular SQL Server instance at your hand could be hosting only one  module of that ERP package. The main Hosted Application field may contain "ABC ERP System" and the second categorization can provide further details  like "General Ledger Module".

  • Internal vs. External: Is this SQL Server hosting data for the organization's own internal systems or is it hosting data for clients, partner or suppliers (e.g. cloud service)?

  • Criticality: Is this a Tier 1 server (e.g. billing system) or a non-critical environment?

  • Geographical Location: Where is the server located? For a company with nation-wide business, the default location could be the dedicated data center. For a global bank, the server can be in a different country / time zone.

Technical Configuration Information

These attributes relate to technical architecture.

  • Physical Configuration: Is this a physical server or a Virtual Machine (VM)? Is this a node of a cluster? Is this a DR server (cold or hot stand-by) for Always-On, Mirroring or Log Shipping?

  • IP Address: What's the IP address of the system? This can be a necessary piece of information as applications often have addresses hard-coded within programs and scripts; aliases, linked servers and ODBC connection could also be using the IP instead of server name. If the system goes through a migration phase, all those moving parts would need to be checked and updated. The server administrators can update the DNS for redirection, but you would still want to keep track of the old IP address for possible troubleshooting purposes.

  • Logical Location: Is this server part of an Active Directory Domain within the organization? Is this in a workgroup? Is this located in the DMZ (e.g. extranet servers)? What's the domain or workgroup name? Has the server been "outsourced" to a cloud service provider and your access is only through Management Studio?

  • Access Method: What's the preferred / usual access method for the server? Do you have to use a special account created for the DBA or can you use your Windows account? Is it accessible through regular Windows RDP or you need to use third-party tools like VNC or need Citrix access? Do you have to go through any hoops like logging into a trusted server first and then access the target machine? What's the name / address of that trusted machine in the middle? 
  • Windows Version: What's the version of the underlying operating system? Is it still Windows 2000 running a SQL 2000 database? What's the service pack level of Windows? You can get the same information from the CMDB or server administrators, but you would want to keep it all in one place for answering OS related questions.

  • Storage Characteristics: Is this server using an external shared storage like a SAN for all its drives or is it a mixture of local drives and SAN storage?

  • Version: What version of SQL Server is it? 2000? 2005? 2008 / R2 or 2012?

  • Edition: What's the edition? Are we running Express Edition in a production system or a Developer Edition? Is it Standard, Enterprise or Data Centre?

  • Service Pack: What's the service pack level?

  • Patch Level: Was there any Cumulative Update, Hotfixes applied to the system? What are those?

  • Components: What components of SQL Server are running in the machine? Is it a vanilla installation of SQL, SSIS and Full-text daemons only? Or is it running SSAS too? Is the server hosting only a stand-alone version of Reporting Services?

  • Service Account: What's the service accounts used for each SQL Server component? Is this a dedicated domain account or the "Local System" account? For a domain / workgroup account, what's the password?

  • sa Account: If the server is using mixed mode authentication, what's the "sa" password?

  • Other Special Accounts: Are there any other privileged accounts used in the machine that have access to SQL? Do you have the passwords?

Risk Management Information

The following attributes define if the system is protected well enough.

  • Disaster Recovery: If the server is a top tier system with higher exposure to risk, is there a DR system available? 
    • What's the DR mechanism? Log Shipping, VMWare Site recovery? Always-On?
    • What's the DR / failback server name?
    • Has there ever been a DR testing conducted? If so, when was the last time?

  • Backup: What's the story with SQL Server Backup?
    • Are the databases being backed up at all?
    • If backed up, are they through
      • SQL native backup (scripts, maintenance plan jobs)
      • Third-party tools (e.g. NetApps SnapManager, Symantec NetBackup, EMC Avamar)
    • If backed up:
      • Have the backups ever been tested for restored? When was the last time the backups were successfully restored?
    • If backed up:
      • How often the databases are fully backed up? How long do you have the full backups accessible?
      • How often the "incremental" (differential, transaction log, filegroup)  backups happen? How long do you have the incremental accessible?
      • Are the backups being protected (tapes, off-site storage etc.)?

  • Monitoring: Is the server being monitored for availability, capacity and performance?
    • Availability: Do you get an alert (e-mail or SMS) when the server goes offline? Do you get similar alerts when SQL Services are offline? 
    • Capacity: Are the disk spaces, memory, network bandwidth and CPU being monitored in real time? Do you get alerts and warnings when disk quotas fall below a certain threshold%?
    • Performance: Do you have access to performance reports for the server? Is there any trend report available?

Support and Governance Information

These are pieces of information that help you find people or teams who can help you with the server and who you probably need to report to. This information may also be available from a corporate CMDB.

  • Business Owner: Who is the ultimate "customer" for this SQL Server? Does this SQL Server instance host external client databases (e.g. hosting services and ISPs) or is it hosting a departmental database (marketing or engineering workgroups)? For organization's internal systems, identify the business teams and departments that have the most input / concern / influence over the server.

  • Business Owner Representative: Who is the person you talk to from the customer side? If it is an external customer, what's their contact detail?

  • Technical Owner: Which other teams are responsible for the system? In most cases it will include a server infrastructure team. Other stakeholders can be Help Desk, customer's own IT department, external vendor etc.

  • Technical Owner Representative: Who is the other technical guy who can help you with the server? How can you reach him?

The support and governance information is important because when it comes down to maintenance, support, installations, upgrades or outages, you will need to work with each of these groups or individuals to secure authorization, arrange change windows, avail technical support and so on. Effectively this tells you who is depending on your service as a DBA and who you are depending on.

Creating the DBA Repository 

Depending on how you go about it, there can be a lot of information to capture from your servers and various logical pieces can then translate into multiple fields in a database. The actual implementation can itself be the subject of one or more lengthy articles, so I won't get into the details here. Without being pedantic, I can say I have seen a few examples like:

  • Using the Registry to hold the DBA information (custom keys and sub-keys), although I don't think it's a good approach..
  • Excel spreadsheet (perhaps the easiest and most widely-used)
  • Custom web application where the backend is itself a database and the data modification happens through an online form.

I personally used a mixture of Excel spreadsheet, a bit of SSIS data load into SQL Server back-end tables and then publishing through Reporting Service. But then again, I created an Excel-only solution later.

Whatever method, you need to spend some time designing the repository's physical data structures.

Populating the Repository

Once you have the physical database set up, it's time to populate it with data. Populating the repository for the first time is always the hardest part. That's because if you have never documented your systems, you really don't know what's out there. Other DBAs before you may have left the organization without leaving any proper documentation; even if they did document their servers, people may not know where they are.  Most DBAs would have some sort of list of the systems they manage. If you can get hold of such lists, start from there. You can consolidate all the files you can gather, go through each of them and verify the accuracy of the information. This should help you see which servers are still online. You will need to look into each server manually and collect some of the information. It can be a fairly tedious process but at the end it's all worth it.

The main thing to remember is that this is an iterative process and for some systems, you may not have all the information you would like to gather. As you fill the blanks gradually, start documenting the servers you are rolling out yourself. Start asking your peer DBAs to let you know about systems they are managing or have rolled out in the past. 

Manual processes apart, you can use automated discovery tools like Microsoft Assessment and Planning (MAP) Toolkit to query the Active Directory for SQL Servers running in your network. A detailed discussion of the MAP Toolkit is out of scope of this article.

Ownership of the Repository

It's important to create a control mechanism from the very beginning to keep the Repository relevant and error-free. By control mechanism, I mean the following:

  • There should be one and only one version of the config repository available and ideally it should be in a network accessible location. This would eliminate the possibility of different team members having different versions of the same repository.

  • There should be a process in place where only one (or at the most two) person(s) can update this repository. This custodian can be the DBA team lead or the senior DBA within the team. For a one-man DBA operation, it will be the DBA himself. This approach will eliminate any duplication or erroneous deletion of data.

  • The custodian of the DBA Configuration Repository (itself a DBA job) would ensure maximum authenticity of the data. He would be reviewing the repository on a regular basis to identify any missing pieces, errors, omissions and duplicates. He would be ensuring the repository is read-only for anyone but him (and any trusted team member) and any sensitive information (passwords etc.) are masked.

  • There should be a process within the DBA team where any system changes are reported to the custodian. This includes new server rollouts, server migrations and retirements, service pack upgrades, password changes and so on. 

  • New DBAs who join the team needs to have their orientation about the Configuration Repository, its usage and the associated processes. Existing DBAs should be familiarized with its operation and the need for its accuracy.

  • The Configuration Repository needs to be backed up regularly.

What's the Use?

So now you have implemented a DBA Configuration Repository after weeks (or even months) of effort, managed to audit every single server instance you know of and populated the system with relevant data. Your team members (and even management) support you with the process. You know you have done it and have achieved something. But what's the use? Where does it all fit in? Well consider the following scenarios:

Scenario 1: A new DBA has just joined the team and he needs to get running quickly. You can familiarize him with the repository and give him a list of servers to look after. No need to think - just the ones you think are "low risk".

Scenario 2: An IT "risk assessment" initiative just started last week. Your manager has asked you to "engage with the business" and identify systems that pose "significant challenges in manageability". Simple. Filter through your repository, see which important servers are running out-of-support SQL Servers or service packs. See which production systems have never been backed up, which tier 1 systems have never been tested for a DR or which servers don't seem to have a technical owner listed. If you and your team have done your job, there should not be too many entries in the report. This also gives you a chance to get the house in order. 

Scenario 3: You know the old production billing server is dying. It's a physical server and you want the server team to build a VM for it so you can migrate the databases over a weekend. Who do you approach for a formal approval?

Scenario 4: It's year-end license auditing time and the IT Finance team has asked you for a list of SQL Servers that have been rolled out in last year.

Scenario 5: Developers in the product team have just found that a bug in the code can be fixed if the latest service pack is applied to the Analysis Service database. They want you to tell them if the QA server is also running the same SP.

So you see, I can go on an on. The main purpose of the repository is to assist you in identifying issues before they are reported, working more efficiently within the DBA team, minimize unnecessary delays in support activities, having the right information at your fingertips at the right moment and so on. The better you design and populate your DBA Configuration Repository, the better results you will achieve.

Next Steps:
  • Learn more about Microsoft Assessment and Planning Toolkit
  • Learn more about Microsoft Baseline Security Analyzer
  • Learn more about Microsoft Best Practices Analyzer
  • Learn more about network monitoring tool like Nagios, Zabbix, HP OpenView etc.
  • Explore any CMDB used by your IT organization to understand the type of information captured there
  • Retrieve and consolidate all configuration related documents you may have inherited as a DBA and verify their accuracy, cleanse their data and add more fields as necessary.
  • Implement a business process within your DBA team to keep the Configuration Repository up-to-date.


sql server categories

sql server webinars

subscribe to mssqltips

sql server tutorials

sql server white papers

next tip



About the author
MSSQLTips author Sadequl Hussain Sadequl Hussain has been working with SQL Server since version 6.5 and his life as a DBA has seen him managing mission critical systems.

This author pledges the content of this article is based on professional experience and not AI generated.

View all my tips



Comments For This Article




Monday, January 20, 2014 - 8:37:39 AM - Ernest Moussi Back To Top (28142)

Many organizations have to comply with various regulatory requirements such as SOX, HIPPA, PCI, and required to conduct internal and/or external audits. So beyond its usefulness to the disciplined DBA, the detailed information Sadequl provided in his article can help IT management be ready and proactive to address audit needs and answer pressing questions from upper management. Well thought out, very thorough. Great job!

 

 

 


Friday, January 3, 2014 - 2:42:30 AM - David Alcock Back To Top (27945)

Great article and as a couple of people have already said, very often overlooked.  A lot of tools will give you the ability to export the technical information (we use Idera for example) and then you combine this with your own business related stats.


Sunday, December 8, 2013 - 4:03:12 PM - John Christly Back To Top (27735)

Great article Sadequl! Very good information on the types of things that need to be tracked by DBA's and others such as those in an IT Security or Risk Management role.

I have developed something that I think some of you may be interested in - it is used to track various "bits" of info on applications, servers, etc. - I call it the IACS (stands for Inventory and Application Control System) - it is web based, and runs on a SQL Database. It can be integrated into Active Directory, and has built-in flexible role based access control so that only the IT person that should be changing their assigned info can change it.

The idea was to have a centralized repository that could gather data from various sources of information that already exist within a typical IT network, and to also allow for users to enter important details that could not be found elsewhere. One of the most important features is the ability for an IT Analyst to enter in details about what the application is used for, by whom, along with details about the vendor, as well as details about the associated infrastructure (including servers and databases) that support the application.

It features a dashboard that can be viewed by others such as IT Management, to show all of the applications. I also developed reports in SRSS to be able to print out all the information on a nice formatted report. I built this out of a need to be able to quickly find the "metadata" that is associated with a system, database, or application and have that information available to the rest of IT as needed. 

There are many more features that would take too long to list here. If anyone would like more information on purchasing this commercial application, please contact me at [email protected]


Saturday, December 7, 2013 - 6:52:38 PM - yalcin Back To Top (27730)

It is nice to see that almost everybody working in a mixed and large environment has the same needs..You have written very well to explain the requirements of a busy DBA..Well I have built my own admindb for these purposes and more.. For example I can collect any query from hundreds of servers within 5-10 minutes and save historical data..


Friday, December 6, 2013 - 1:50:12 AM - Rajender Sharma Back To Top (27710)

Many Thanks Sadeq for Sharing sach a Excellent Article which defined what and how we can manage multiple DBs Servers in simple and proper ways and it's realy help all DBA like me to think about to how Automate different customer Enviorments from one place.


Wednesday, December 4, 2013 - 6:42:30 PM - Ekbal Back To Top (27693)

 

Well done Sadequl, this is the very important point which we always overlooked and thanks for reminding all pins and keeping all point in details with consolidated details. Cheers

 


Wednesday, December 4, 2013 - 12:26:19 PM - Monitoring Back To Top (27690)

This is an excellent start!

"It's year-end license auditing time and the IT Finance team has asked you for a list of SQL Servers that have been rolled out in last year." - this is a great scenario, but requires you to add some fields, particularly those concerning what flavor and subflavor of licensing you have, as well as additional OSI/host information.

You need to know if it's MSDN or Server+CAL or Socket or Core based licensing, you need to know if it's a named instance that's sharing a license, you need to know how many cores or sockets and at what virtualization level those are at if you're handling virtual OSI's, and so on.

I would note that whenever possible, have SQL Server report the information directly.

 

At an OS command prompt, try

wmic /node:"YourServerOrIP" service where (caption like "%sql%")

 

The StartName column is the service user!

 


Wednesday, December 4, 2013 - 11:26:02 AM - Svetlana Golovko Back To Top (27688)

Great article! I will definitely add some of the items to our Database Inventory!

We keep ours on SharePoint and have the following fields in addition to yours:

- department owner (useful in reports "DBs by Department")

- vendor support contact

- application name

- application version

- users setup information


Tuesday, December 3, 2013 - 10:48:33 AM - Bob St. Aubyn Back To Top (27671)

Sadequl - Well done.  This is often overlooked, important stuff that anybody managing any more than a few database servers should strongly consider implementing.  The scenarios you describe where this data might become invaluable are very real possibilities in most companies.  I think that most DBA's get by with trying to find the information you store in the repository in an ad-hoc, as-needed fashion, where having it on-hand in seconds makes you better equipped to solve problems proactively, plan for the future and be generally better prepared.


Tuesday, December 3, 2013 - 10:21:44 AM - kural Back To Top (27670)

Nice Aricle!!!! Really Help all DBA!!!















get free sql tips
agree to terms