Posts by Brent Ozar

Announcing Dell DBA Days 2016: The SQL

SQL Server
21 Comments
This August, we’re goin’ back to Texas. https://www.youtube.com/watch?v=qHv_4tHs0i0 Last year, we flew the team out to Round Rock, Dell’s HQ, and ran all kinds of SQL Server experiments in their hardware labs. We broadcasted a whole bunch of webcasts live on the net for you to watch and see what we learned. This year, we’re…
Read More

New Course: Statistics – SQL Server’s Guessing Game

SQL Server
8 Comments
Closed captioned for your statistical pleasure You have to make queries go faster, and you suspect that outdated or inaccurate statistics are hurting your execution plans. Doug Lane is here to help with his new video course, Statistics: SQL Server’s Guessing Game. It’s phenomenally detailed – every single person on our team learned stuff from…
Read More

Breaking News: 2016 Query Store cleanup doesn’t work on Standard or Express Editions

If you’re using SQL Server 2016’s awesome new feature, Query Store, there’s a new bug with automatic cleanup. Books Online explains: Automatic data cleanup fails on editions other than Enterprise and Developer. Consequently, space used by the Query Store will grow over time until configured limit is reached, if data is not purged manually. If…
Read More

First Responder Kit Updated, and sp_AskBrent is now sp_BlitzFirst

We’ve released the first fully open source version of our SQL Server First Responder Kit: sp_Blitz, sp_BlitzCache, sp_BlitzIndex, sp_BlitzRS, sp_BlitzTrace, and the newest member: the newly renamed sp_BlitzFirst. I wanted to rename sp_BlitzFirst because as an open source project, it’s going to have more than just my own answers as to why your SQL Server…
Read More

30,000 Comments

Blogging, SQL Server
7 Comments
It feels kinda arbitrary, but it’s a champagne moment: Thanks to everybody who’s ever stopped by, left a comment, and taken part in the discussions. (An extra-special thanks to folks who even addressed us by the right names, and didn’t call everybody else here Brent, hahaha.) I started this thing over a decade ago, but you,…
Read More

We’re open-sourcing the sp_Blitz* scripts.

SQL Server
22 Comments
We’re proud to announce that our First Responder Kit is now on Github, and it now uses the MIT open source license. What This Means for Users Good news: it’s still free, and now it’ll be updated even more often. If you’re subscribed to update notifications, we’ll still email you monthly when we release new versions. Today, we’re…
Read More

Let’s Make a Match: Index Intersection

SQL Server
4 Comments
Most of the time, when you run a query, SQL Server prefers to use just one index on a table to do its dirty work. Let’s query the Users table in the StackOverflow database (I’m using the March 2016 version today), looking for people with a certain reputation score OR a certain number of upvotes: Query…
Read More

SSMS 2016: It Just Runs More Awesomely

SQL Server
70 Comments
Step 1: configure SSMS to only show file names on the tabs. Click Tools, Options, Text Editor, Editor Tab and Status Bar, and set all of the tab texts to false except file name. After all, not like all this stuff fits on the tab. Step 1: SSMS tab name configuration Step 2: while you’re…
Read More

#DellDBADays 2016: What Would You Do with Unlimited Hardware?

Humor
94 Comments
Last August, we got the team together in person for Dell DBA Days. We ran all kinds of interesting experiments with SQL Server, and shared the results with you via live webcasts. https://www.youtube.com/watch?v=Gn43sOLrcVs You can watch our recorded episodes from last year – I’d highly recommend the last one, Watch SQL Server Break and Explode. Erik…
Read More

SQL Interview Question: “Tell me what you see in this screenshot.”

You’re a data professional working with (or at least applying to work with) a company using the StackOverflow database (I’m using the March 2016 version today). Your users are complaining that this stored procedure is slow: usp_GetPostsByOwnerUserId They didn’t give you parameter 26837 – I’m just giving you that so you can see an execution plan.…
Read More