Blog do EzequielPortuguese PFE SQL Server Team
Hello all, Here is another post on SQL scripts that may help DBAs, following the series "SQL Swiss Army Knife", this time revisiting the topic of VLFs. I blogged on this subject several times before and if you want to read more about it just click here.
Anyhow, a few months back I knew of a case where a database had over 1.2 million VLFs, and it took a very long time to recover when a restart was performed on the instance. More recently I as made aware of a database with over 930k VLFs. Thankfully, the database owner wanted to preemptively deal with the situation. The database owner was aware of the impact of a high VLF number and wanted a way of quickly finding and dealing with this kind of issue on other servers. This is why I wrote a script that gets an overview of the current VLF status in all databases of a given server, and if the number of VLFs are above a pre-determined threshold, also makes a suggestion of how many and how large the VLFs should be for that particular database.
The output will show:
It will resemble this:
Note that database and file names are purposely blacked out to preserve sensitive data.
In addition, a script is generated with the typical steps needed to deal with the issue, depending on whether the database is in Simple recovery model or not.
Something like this example:
Hope you find it useful as much as I did.
EDIT (09-08-2011): missing variable set for sql version. Thanks go to Calvin for finding this bug.
EDIT (26-03-2012): Updated script for SQL 2012 support.
Until next time!
Disclaimer: I hope that the information on these pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided "as -is", without any warranty, whether express or implied, of its accuracy, completeness, fitness for a particular purpose, title or non-infringement, and none of the third-party products or information mentioned in the work are authored, recommended, supported or guaranteed by Ezequiel. Further, Ezequiel shall not be liable for any damages you may sustain by using this information, whether direct, indirect, special, incidental or consequential, even if it has been advised of the possibility of such damages.
You declare these variables but never set them.
DECLARE @majorver smallint, @minorver smallint, @build smallint
This query can be used to set them.
SELECT
@majorver=PARSENAME(CONVERT(VARCHAR,SERVERPROPERTY('productversion')),4),
@minorver=PARSENAME(CONVERT(VARCHAR,SERVERPROPERTY('productversion')),3),
@build=PARSENAME(CONVERT(VARCHAR,SERVERPROPERTY('productversion')),2)
Thanks Calvin for finding this mistake. I meant to set them like this:
@majorver = (@@microsoftversion / 0x1000000) & 0xff,
@minorver = (@@microsoftversion / 0x10000) & 0xff,
@build = @@microsoftversion & 0xffff
I changed the download script accordingly.
Hello all, If you follow this blog, this is another post on VLFs, a topic I’ve covered several times
Hello all,
If you follow this blog, this is another post on VLFs, a topic I’ve covered several