![]() |
|

SQL Server backup compression with network fault tolerance and zero impact encryption
|
|
By: Tim Ford | Read Comments (8) | Related Tips: More > Monitoring |
Problem
I have over 80 instances hosting 800+ databases that I support on my own. The only way I can keep track of all these databases is to centralize my monitoring so I have a single point of focus on my environment. I can not spend my entire day (and night) hopping from SQL instance to SQL instance in SQL Server Management Studio. I am not the only DBA out there in this situation. So overworked brothers and sisters, what are we to do? We cook up our own monitoring solution that best fits our environments. This tip is the first in a series presenting the building blocks of such a solution. My first tip will focus on monitoring database files and their free space on a single SQL instance.
Solution
I find it important in my environment to monitor the following database/database file level metrics:
To collect this information I need to tap into the either the master.dbo.sysfiles system table in SQL 2000 or master.sys.sysfiles compatibility view in SQL 2005. I also need to make use of a few T-SQL functions at the DBA's disposal. First, let me present the query. Afterwards I'll explain the finer points.
DECLARE @DBInfo TABLE |
On my test system this produces the following results.
(Note:this was broken into 2 screenshots, so the output was not too wide for the webpage.)

There are quite a few calculations that may need explaining. Let's take a look at them as they appear in the query above:
@@servername
This is the system variable that stores the name of the local SQL Server instance being run.
CAST(sysfiles.size/128.0 AS int) AS FileSize
Database size information is stored as 8Kb pages in sysfiles. If you have a 100Mb data file the value in sysfiles.size would be 12800 (100Mb * 1024) / 8. To reverse-engineer the size in Mb from a value that is stored as 8Kb pages you simply use the following formula:
File Size in Mb = (Pages In Kb) * (Kb per Mb) / (Kb per Page)
Using the information available to us (which is sysfiles.size) we can fill in the formula as thus: File Size in Mb = (sysfiles.size) * 1024/8. Since 1024/8 = 128 I've simplified the formula throughout the query as (sysfiles.size/128).
CONVERT(sysname,DatabasePropertyEx(''?'',''Status'')) AS Status
CONVERT(sysname,DatabasePropertyEx(''?'',''Updateability'')) AS Updateability
CONVERT(sysname,DatabasePropertyEx(''?'',''Recovery'')) AS RecoveryMode
The DatabasePropertyEx() function returns the value for the database property or option specified. In this case we are interested in the Status, Updateability, and Recover database option values. I convert the values to the sysname datatype for compatibility with my metadata repository.
CAST(sysfiles.size/128.0 - CAST(FILEPROPERTY(sysfiles.name, ' + '''' + 'SpaceUsed' + '''' + ' ) AS int)/128.0 AS int) AS FreeSpaceMB
The FreeSpaceMB calculation is simple once you understand what I explained above for the calculations associated with FileSize. To determine free space we need to know how much of the total file space is being consumed. This information is exposed via the FILEPROPERTY() function. FILEPROPERTY() expects the following parameters: file name, and property.
Expect a future tip on the various uses for FILEPROPERTY(), but for now we focus on the SpaceUsed property. This value is also stored in 8Kb pages, so the factor of 1024/8 (or 128) remains constant. Using the same basic rules we discussed above this is what the formula would look like this: Available Space in Mb = (File Size in Mb) - (Space Used in Mb). The formula in the query casts all variables as integer data types and converts the available values from pages to Mb.
I know that one of the major foundations of database normalization is not storing calculated values in a database. However, I like to be able to trend my metadata over time and with the complexity of the formulas I prefer to do all my thinking up-front. That being said, I don't just store the size information in the table and run calculations in my queries after the fact - I do my calculations directly in the query that populates the repository.
CAST(100 * (CAST (((sysfiles.size/128.0 -CAST(FILEPROPERTY(sysfiles.name, ' + '''' + 'SpaceUsed' + '''' + ' ) AS int)/128.0)/(sysfiles.size/128.0)) AS decimal(4,2))) AS varchar(8)) + ' + '''' + '%' + '''' + ' AS FreeSpacePct
Free space as a percentage of total space is a simple variation of the previously stated formulas. It is based off of the following simplified formula and adjusted for Mb from the 8Kb pages value that is available to us: Free Space In Percent = 100 * (Free Space) / Total Space. I then present it as a formatted percentage.
Summary
In this example I am just displaying the results in real time and not storing the results to a permanent table. This could easily be changed by using a permanent table instead of a table variable and therefore you can do trending.
Next Steps
| Tuesday, February 05, 2008 - 12:15:55 PM - tews70 | Read The Tip |
|
This is very cool and exactly what I was trying to figure out - however I have SQL 2000 servers and get a message Msg 197, Level 15, State 1, Line 45 It works great on my SQL 2005 systems. Is there an easy way to alter this code to work on 2000? |
|
| Tuesday, February 05, 2008 - 12:48:34 PM - tews70 | Read The Tip |
|
Solved my own problem - Changed table variable into a temporary table - works like a charm on 2000 now. Thank you for this very useful bit of code -Tim |
|
| Tuesday, March 18, 2008 - 6:13:33 AM - rsbutterfly16 | Read The Tip |
|
hi can you put the steps of how to Include this process in an SSIS package that can run against all my instances/different servers and dump metadata into a single database that you can report against please. |
|
| Wednesday, January 06, 2010 - 3:54:01 PM - sqlchicken | Read The Tip |
|
Here is the query re-tooled to work with SQL 2000 and documented
/*Drop temporary table if exists*/ |
|
| Wednesday, June 09, 2010 - 5:47:55 PM - KiranAitha | Read The Tip |
|
Hi , How can i use this script to query DB Usage of a Single database from 100+ servers.Basically i want to get the output into a single table on one of the servers where i run this script. Thanks, |
|
| Monday, January 16, 2012 - 3:15:39 AM - LL | Read The Tip |
|
Is anyone getting this error (SQL 2008 R2 SP1 CU3)? Msg 8115, Level 16, State 7, Line 1
|
|
| Tuesday, July 03, 2012 - 11:25:27 AM - Ivan Vuk | Read The Tip |
|
This is a brilliant. Exactly what I was trying to do but I was stuck as I did not know anything about the stored procedure
Thank you very much
|
|
| Thursday, May 09, 2013 - 10:46:58 AM - Aswin | Read The Tip |
|
Tim, thanks for the excellent use of Sp_MSforeachDB. Can you please let me know how can we use the same script if we have offlined databases. I think this script will only provide information about online databases. Your help will be greatly appericated :).
thanks |
|
|
privacy | disclaimer | copyright | advertise | about authors | contribute | feedback | giveaways | user groups Some names and products listed are the registered trademarks of their respective owners. Edgewood Solutions LLC | MSSharePointTips.com | MSSQLTips.com |