Search Results for “Ola Hallengren”

Pocket Square

DBCC CHECKDB Not Run Recently

When SQL Server writes data to your drives, it just assumes everything’s okay until it needs to read the data back again. Unfortunately, in the event of storage corruption, the storage isn’t so kind as to alert SQL Server.  And sometimes, SQL Server has even been known to corrupt itself. We need to periodically check…
Read More

SQL Server RDS

Amazon Web Services (AWS) is a platform that offers a ton of services ranging from block storage, operating systems, to mail queues, DNS, and caching. When you say “cloud”, a lot of people think of AWS. AWS hosts a variety of businesses, large and small. Unfortunately, you still have to administer and configure your servers.…
Read More
Pocket Square

Full Recovery Model Without Log Backups

6 Comments
Full Recovery Model Without Log Backups When a database is in Simple Recovery Model, SQL Server does circular logging: it goes back to the beginning of the transaction log and reuses space when it can.  Portions of the log are freed up when they’re not covering open transactions. Circular use of the transaction log file…
Read More
Pocket Square

Backups Not Performed Recently

Backups Not Performed Recently Errr…… Before we start working on anything, we need to know all our user databases are getting backed up.  We check to see if there’s been a full backup in the last 7 days. Often, someone set up maintenance plans to back up specific databases by checking their names.  They checked…
Read More
SQL ConstantCare

What SQL ConstantCare® Looks For

“This server’s plan cache smells terrible.” SQL ConstantCare® analyzes your data looking for health and performance issues that cause user pain. Here are the things we check for and the number of servers where we found this problem this month: Backup Back Up Your TDE Certificate – 137 servers affected CRITICAL: Take a Full Backup…
Read More
Office Hours Podcast

[Video] Office Hours 2018/1/10 (With Transcriptions)

SQL Server, Videos
0
This week Brent, and Richie discuss validating backups using the backup set table, how to figure out if you’re a Mid-Level or Senior DBA, rollbacks, compatibility modes while upgrading SQL Server versions, MAXDOP settings, and Brent’s car purchasing tip. Here’s the video on YouTube: You can register to attend next week’s Office Hours, or subscribe to our…
Read More

Maintenance Plans Enable Your Disabled Indexes

SQL Server
6 Comments
One of Brent’s students in the Performance Tuning class, Jason M., told Brent that maintenance plans enable your disabled indexes. What the what? Steps to reproduce: Disable an index Setup a maintenance plan to rebuild all indexes Run the job Check if the index is disabled or enabled. Steps 1 and 2 can be reversed…
Read More

sp_AllNightLog: ¿Por que los queues?

Building stuff I sometimes really hate coming up with ideas, and much prefer someone to just say “I want this” so I can go out into the world and figure out how to do that. Occasionally though, I realize that I’m not going to get all that much direction. That’s what happened with sp_BlitzQueryStore. It…
Read More

5 Things About Fillfactor

Index Maintenance
72 Comments
Are you a page half full, or a page half empty kind of person? I’ll never think “I’ve seen it all” when it comes to SQL Server– there’s just always someone waiting around the corner who’s found a weird new thing to do with it. But there are some things I really wish I could…
Read More