the commands i run before going on vacation

My favorite vacation ever was the time I visited Steve Jones’ wardrobe. It bore a striking resemblance to Maui and even came with complimentary piña coladas.

The year was 2009. The sun was out, Colbie Caillat was on the radio and I hadn’t mastered PowerShell yet, so I was left feeling frantic about the health of my SQL Server estate.

Now, though, I’ve got dbatools which allows me to quickly check the things that concern me most. Even with monitoring systems in place, who monitors the monitors? I want reassurance everything is as I expect.

 

Before I begin

Before I begin running these commands against every SQL Server in my organization, I get a list from my Central Management Server using Get-DbaRegServer. This command will undergo a definite overhaul during the 1.0 makeover, but for now, I run the following to get a list from my Central Management Server on my server dedicated to SQL Server management.

Here are the servers in my Central Management server

So I go and grab the instance names and add them to the variable $allservers. I actually do this in my $profile, but it works directly from the command line, of course.

$allservers = Get-DbaRegServer -SqlInstance localhost

Of course, $allservers can be a plain-text list of servers such as $allservers = “sql2014″,”sql2016″,”etc” or even a list of connected SMO servers if alternative credentials are needed. I’ll get into that in the future when we introduce a few new commands that keep a local JSON database of your servers and credentials.

 

Are any servers running low on disk space?

Next, I always try to keep at least 20% free disk space on my SQL Server drives (including C:) so I check to see if any fall below that threshold using Get-DbaDiskSpace.

$allservers | Get-DbaDiskSpace | Where-Object PercentFree -lt 20

Here, I can easily see that two of my servers may need attention while I’m out of town.

 

Have any jobs failed in the past 30 days?

Failed jobs are the worst, especially if they’re my backup jobs. Let’s check failed jobs for the last 30 days using Find-DbaAgentJob with either syntax below

$allservers | Find-DbaAgentJob -Failed -Since (Get-Date).AddDays(-30)
$allservers | Find-DbaAgentJob -Failed -Since 1/5/2017

Uh oh, looks like my log shipping isn’t so healthy. Probably shouldn’t go on vacation anytime soon 😧

 

How about my backups?

Next I check to ensure that my Fulls, Diffs and Logs are in order. My servers perform FULL backups once a week, DIFFs once a day, and LOG backups every 15 minutes. Let’s check to ensure this is happening with Get-DbaLastBackup

$lastbackups = $allservers | Get-DbaLastBackup
$lastbackups | Where { $_.LastLogBackup -lt (Get-Date).AddMinutes(-15) -and $_.RecoveryModel -ne "Simple" }
$lastbackups | Where LastDiffBackup -lt (Get-Date).AddDays(-1)
$lastbackups | Where LastFullBackup -lt (Get-Date).AddDays(-7)

No results here is good; it means that all of my scheduled backups are working and no last backups were older than I expected 🙂 If you’re curious about the the output of Get-DbaLastBackup, it looks something like this

Also, if you’re into backups as much as me, check out this post I wrote about Test-DbaLastBackup called building a dedicated backup test server.

 

Have any databases been failing integrity checks?

Next up! Such a great command – Get-DbaLastGoodCheckDb. This function retrieves the last good CHECKDB of each database.

$allservers | Get-DbaLastGoodCheckDb | Where LastGoodCheckDb -lt (Get-Date).AddDays(-1)

Oops! Looks like one of my servers is in really bad shape and CHECKDB hasn’t been run on the databases or they’ve failed for a while. Better run a check so I can get to my 🍹!

 

Speaking of vacation

You may be wondering about the status of 1.0. It’s coming along, albeit a little slower than we expected. One of the biggest reasons was that I had really bad burnout that lasted 1.5 months. I just couldn’t get motivated. It started sometime in early March but I’m back at it now.

Burnout is nothing new to me, but I did have an epiphany this time around. My burnout isn’t caused by excessive working and the need for a vacation. For me, burnout is caused by absence of progress as Oleg Slobodskoi pointed out in his post Fighting burnout with Open Source. I was indeed stuck on a persistent issue and just hadn’t progressed for nearly two weeks.

In the future, I’m going to ensure that I don’t get stuck by allowing myself to move on, even if it means gifting the pesky task to someone else.

 

World tour

The reason I was reminded to do this post was because I’m gonna be out of town next week for PSConf.eu! PSConf.eu is an awesome PowerShell conference where you’re surrounded by great friends and Hefeweizen. “Let’s all have a great time together” is one of the tenets of the conference and last year’s conference was the best conference I’d ever been to.

The dbatools team will have a heavy presence there, too! I know that Rob, Stuart, Fred, André and William will be there and I’m hoping a few others show up as well. Kinda like recently at SQLBits!


Dan Alexander, André Kamman, Mötz Jensen, Shane O’Neill,
Rob Sewell and Stephen Bennett (not pictured), Thomas LaRock (not pictured)

Which reminds me, we added a presentations page to the site. If you want to know where we’ll be speaking, hit it up. And! If you’re speaking about dbatools, let us know and we’ll promote your session 🤝❤️


I left this small so you would click 😉

 

Finishing up

So here’s a big ol’ chunk of code you can paste into your environment. You’ll have to customize it a lil’ bit, but it’s a good start.

# Get all servers
$allservers = Get-DbaRegServer -SqlInstance localhost

# Check disk space
$allservers | Get-DbaDiskSpace | Where-Object PercentFree -lt 20

# Find failed jobs
$allservers | Find-DbaAgentJob -Failed -Since (Get-Date).AddDays(-30)
$allservers | Find-DbaAgentJob -Failed -Since 1/5/2017

# Check backups
$lastbackups = $allservers | Get-DbaLastBackup
$lastbackups | Where { $_.LastLogBackup -lt (Get-Date).AddMinutes(-15) -and $_.RecoveryModel -ne “Simple” }
$lastbackups | Where LastDiffBackup -lt (Get-Date).AddDays(-1)
$lastbackups | Where LastFullBackup -lt (Get-Date).AddDays(-7)

# Check integrity checks
$allservers | Get-DbaLastGoodCheckDb | Where LastGoodCheckDb -lt (Get-Date).AddDays(-1)

Do you have commands or routines you run before leaving town? I’m looking for ideas to add to my list.

Till next time (probably sometime next week)!

- Chrissy

5 thoughts on “the commands i run before going on vacation

  1. Chrissy LeMaire Post authorReply

    LOL! Oops, sorry for the misattribution. That’s Shane O’Neill, not Thomas LaRock. (It’s dark and my eyes are aging.)

  2. Jared Hunt Reply

    Great post! I collect this data into our SqlOps db, wrote an SSRS report, and created daily weekday subscription per environment. Every night our offshore resource reviews Daily Status email report and reconciles any issues. This is on top of alerts as a failsafe to ensure nothing goes unnoticed. However, I also include list of new databases, dropped databases for past 7 days, and top 10 list of shortest and longest running servers.

  3. Eugene van den Bergh Reply

    Thanks for the great post Chrissy I will certainly use this 🙂

  4. Pingback: TSQL Tuesday #94 Get-DbaRegisteredServerName | Power of dbatools | SqlWorldWide

  5. Pingback: submitting an issue – dbatools

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.