Category Archives: Uncategorized

Monitoring SQL Server on Linux Part 1: Installing sysstat (Surviving Without Perfmon)

In my opinion, one of the greatest barriers to wider adoption of Linux for SQL Server platforms is not concern about how well the engine works under Linux. I believe it is actually the absence of tools that SQL Server DBAs have become accustomed to. No, I am not really talking about SSMS (at least not today). Today I’m actually talking about how to survive without the Windows Performance Monitor (Perfmon) that we’ve all grown to love over the years.

First the easier part. When we talk about configuring the Windows performance monitor on a Windows-based SQL Server we are usually worried both about general Windows performance counters and also SQL Server-specific performance counters. The good news here is that the SQL Server performance counters (page lifetime, connections per second, etc) are also available from the sys.dm_os_performance_counters dynamic management view. This DMV is still available when we are on a Linux platform so this data can be obtained from there instead. I may write about this in later parts of this series, but until/unless I do Dave Bland and Louis Davidson (among others) have written on the topic. We still need a way to get operating-system level stuff like CPU usage, I/O performance, etc., … which will be the focus of the rest of this post.

Second, any time we are discussing ongoing performance monitoring it is wise to ask ourselves if we really want to set up our own monitoring framework or not. There are some great third party tools out there which are worth a look, and that is even more true if we are branching out into a less familiar (to us) operating system. Even if none of the traditional third party SQL Server monitoring packages are in budget, there are some great frameworks for monitoring Linux that may fit the bill.

If you are still reading that must mean that you, like me, are used to leaning heavily on perfmon on Windows and have some infrastructure around saving the data and are looking for something close to a drop in replacement … without installing an agent or really any more software than is necessary. The rest of this post will walk through the installation of sar (sysstat) as one option that, while not actually pre-installed, is lightweight and easy to get up and running. Examples will be in Ubuntu, I may provide walkthroughs for other distros in the future. Bear in mind that things are still early, it is possible that a year or so from now I would have a different suggestion.

Step 1 : Install the sysstat package

As of the time of this writing sysstat is not installed by default. Make sure repositories are up to date and install. In Unbuntu packages are installed with the apt command, in other distributions the manager will be different (yum or zypper)

sudo apt-get update
sudo apt-get install sysstat

Step 2 : Set retention period in config file

Edit the configuration file ( /etc/sysstat/sysstat in Ubuntu, may be located in /etc/sysconfig/sysstat if you are using a different distribution ). Decide how many days worth of data you would like for sysstat to retain on the filesystem. Be aware that the data file name convention is different if a value greater than 28 is specified for history, so in this example I am editing from it’s default length of 7 to 28.

sudo vi /etc/sysstat/sysstat

Step 3 : Consider updating crontab to gather data ever 5 minutes

Data collection does work a bit differently. On Windows, we typically configure perfmon to start every day at midnight and run for 24 hours regardless of sample frequency. With sysstat, we instead schedule each sample collections. I personally prefer this because it is more tolerant of events like mid-day reboots.

The scheduler in UNIX is called cron, and a default crontab file is usually installed with sysstat. The default will save data every 10 minutes. I typically adjust this to save a sample every 5 minutes. This can be done by updating the rightmost column of the line calling debian-sa1 to be */5 (* in this column would mean run every minute, */5 means every 5). This file is located at /etc/cron.d/sysstat and can be edited with any text editor (I’m using vi in this example)

sudo vi /etc/cron.d/sysstat

Step 4 : Enable automated data collection

It’s easier to manage data collection if it’s enabled as an Ubuntu service. This can be done in the /etc/default/sysstat file

sudo vi /etc/default/sysstat

And finally, restart the service using this command

sudo service sysstat restart

Viewing some data

The next couple of posts in this series will work through some examples of how we can retrieve historical data from sysstat and insert it into SQL Server. But until then here are some examples of how we can view historical data. A few notes on filenames

  • Assuming we configured a history length of 28 or less, the last two digits of the filenames refer to a day of the month. All of my examples are using data from the 27th so I use /var/log/sysstat/sa28 – to see data from a different day change the last two digits.
  • Some distributions may place this data in /var/log/sa/ instead of /var/log/sysstat/
  • If the “-f <filename>” parameter is omitted, data for the current day will be shown
  • Be aware when using tab completion that the /var/log/sysstat/ directory contains files other than data files. If sar complains about an invalid file it’s possible that a report file was passed in instead of a data file.

A few notes on parameters

  • The first parameter in the below examples specifies the type of data we want
  • The -f parameter specifies which data file (which day) we’re interested in
  • The -e parameter specifies an ending time. I personally like to specify 11:59PM as an ending time to prevent data timestamped at midnight of the following day.
  • The -t parameter specifies that times should be show in the local time zone rather than UDC.
# Show cpu data for all cores for the 27th day of the month
sar -P ALL -f /var/log/sysstat/sa27 -e 23:59:00 -t
# Show memory utilization for the 27th day of the month
sar -r -f /var/log/sysstat/sa27 -e 23:59:00 -t
# Show disk (block device) info for the 27th day of the month
sar -dp -f /var/log/sysstat/sa27 -e 23:59:00 -t
# Show network device utilization
sar -n DEV -f /var/log/sysstat/sa27 -e 23:59:00 -t
# Show paging activity
sar -B -f /var/log/sysstat/sa27 -e 23:59:00 -t

Viewing some easier to process data

The sar commands discussed in the last section display data formatted for human readability. This is Linux and it is, of course, entirely possible for us to use shell scripting tools such as sed and awk to reformat this data into a delimited list which would be easier to insert into SQL Server. Unfortunately those are not tools in the typical SQL Server professional’s tool belt. There is good news – we can get computer-friendly output from the sadf command. The following examples will give semi-colon delimited versions of the same data.

# Show cpu data for all cores for the 27th day of the month. The -d option specifies ';' separator
sadf -P ALL /var/log/sysstat/sa27 -e 23:59:00 -td
# Show memory utilization for the 27th day of the month. The -- indicates sar options follow
sadf /var/log/sysstat/sa27 -e 23:59:00 -td -- -r
# Show disk (block device) info for the 27th day of the month
sadf /var/log/sysstat/sa27 -e 23:59:00 -td -- -dp
# Show network device utilization
sadf /var/log/sysstat/sa27 -e 23:59:00 -td -- -n DEV
# Show paging activity
sadf /var/log/sysstat/sa27 -e 23:59:00 -td -- -B

Searching for Cascadia: Nine Months on the Road

Introduction, Motivation, and a False Start

“Nothing behind me, everything ahead of me, as is ever so on the road.”
― Jack Kerouac, On the Road

For the past couple of years I have been one of those work-at-home SQL Server professionals who finds myself trying to decide where to live when I don’t have a traditional office tying me to a specific location. When enough of us #sqldrifter types get together after a SQL Saturday event, talk almost inevitably turns to the idea of pulling up anchor and traveling the country in search of a new home. COVID has kept us from gathering to have these chats since I settled in to my new home, so I thought I’d blog about my experiences on the road instead.

First a few words about why my wife and I felt the need to spend a year aimlessly drifting around the county at the time we did. In our situation, it is not that we were unhappy in Denver. On the contrary, it’s actually a great place. Sure we could have done without the scorching hot summers and high-desert landscape … but the actual city is great. It’s just that I never really managed to crack the Denver consulting market. Essentially 100% of my work continued to be remote and the cost of housing along most of the Colorado front range is rather steep. We were happy in Denver but felt we could be just as happy somewhere else with a lower cost of living. Prior to this we had already done the “front range crawl” by relocating from northern New Mexico to Colorado Springs and from Colorado Springs to Denver so we really were out of short, easy moves to consider.

In 2018 we decided to let our lease on the apartment lapse, pack for a long trip, and hop in the old reliable Subaru Tribeca with our two small dogs for an adventure. One of my clients is a Canadian startup, so at the time was considering locations in Canada as well as the US. Our plan was to slowly work our way north until we hit Edmonton, AB then back to Denver for the first leg. After that we would slowly work our north-east towards Maine (more to see along this route) and possibly all the way out to the Halifax, NS area.

This is when we started to hit obstacles. Shortly before our lease ran out (literally as we were packing up our apartment) our 17 year old Peekapoo Chloe passed away. It was a sad time, but we soldiered on with our plan for the road trip of a lifetime with our remaining dog Maggie, a 6 year old Lhasa Apso. Because we intended to spend some time in Canada, one of the final tasks before leaving was to take her to the vet for a health certificate. During this visit, the vet detected a suspicious lump in her abdomen that was eventually diagnosed as gastrointestinal  lymphoma. We moved into a local hotel (too late to get apartment back) for a few weeks to consult with a veterinary oncologist and decided that 6 years was entirely too short of a life for Maggie. Weekly vet visits for blood work and chemotherapy ruled out heavy travel, so we delayed our adventure and signed a lease for a new apartment in Lone Tree (south side of Denver).

In the spring of 2019 Maggie lost her battle with cancer. The question now was, did the road trip still feel right or after a year-long delay were we ready to just stay put and start looking for homes in Colorado again? We took a long overdue vacation and returned to discovered that our neighbor, unbeknownst to everyone else, had passed away shortly after we left. That was the last nudge that we needed. We gave up the apartment, packed up our recently leased Subaru Outback (the Tribeca had also passed during this time), and hit the road in June of 2019 looking for a fresh start and better memories.

What Kind of Home We Sought

To seek the sacred river Alph
To walk the caves of ice
To break my fast on honey dew
And drink the milk of paradise
-Neil Peart, Xanadu

This was our initial wish list for a new home:

  • Someplace that isn’t in a desert (not even “high desert”). We might have actually stayed in the Denver area if it was a little less dry. Specifically, someplace I can have a nice green lawn
  • Someplace we can find a nice home for less than $X00,000 (fill in your own value for X, whatever seems excessive for a median price home … that number is probably regional).
  • Within two hours of a reasonably large city with a decent airport (I don’t travel much for work-work but I do travel a lot for speaking engagements)
  • Nice big lot (an acre?) with good potential for a guest house /  ADU in case one of our parents ever needs to move in for a while
  • Someplace we can keep chickens for fresh eggs

By the time we started the trip, we had de-emphasized the idea of moving to Canada. After losing a year it didn’t make sense to complicate an already stressful decision with concerns about getting residency. In hindsight I wish we would’ve pursued the Canada option more aggressively but this blog isn’t the place to get into that.

We were looking for something new and both of us had spent most of our lives out West, so our expectation was that we’d end up someplace on the east coast. That said, we wished to be open to other possibilities as we made our journey.

The Journey

And you may ask yourself, well…
How did I get here?
– David Byrne, Once in a Lifetime

I worry about over-sharing when I relay some of the events of the past year, and I’m aware that I tend to make my posts much too long. So for this section I will try to keep things pretty high level.

  • June 2019: Finish putting our possessions back into storage. Decide to head towards Portland, ME (a top contender for new home). Stop in Iowa City for SQL Saturday where I presented a pre-con as well as a regular session. I learned I would be needed for an on-site visit in early July. Fly out of Chicago for a quick trip to Vegas.
  • July 2019: Since we were already in Chicago, spent the 4th on one of the lakes in Southern WI. Quick side-trip to Lake Geneva to see Gary Gygax memorial. Back to Chicago for one of my almost unheard of (at the time) on-site visits. Minor medical issue required a visit to Denver, so we drove back. Got back on the road at the end of the month and drove to Hartford, CT.
  • Aug 2019: One of our more productive months for exploration. After Hartford we explored northern MA and southern NH for a week. Quick stopover in Portland, ME (Portland is always AWESOME) before heading up to Bangor. Fell in love with the views around Bar Harbor. Flew to Minneapolis, drove to Sioux Falls for their SQL Saturday and then spend a week checking out Rochester, MN. Flew back to Bangor. Needed to go back to Denver another doctor visit (again, nothing serious), drove back to Denver.
  • Sep 2019: Decided to leave car in Denver (central location) and fly instead for a while. Flew to the Seattle area to look at some more homes on Whidbey Island, then to Boston for SQL Saturday, then back to Denver. After a few days I had to fly back out to Chicago for a quick site visit which pretty much closed out the month. During September our approach changed
    • Our intention was to look for something around Saco, ME but real estate listings had started to dry up for the winter. We put the east coast on the back burner (with intention of going back when housing inventory picked up).
    • We had hit the out of pocket maximum for our health insurance which meant it behooved us to take care of any medical stuff we may need in the next year. Our provider network only covered Colorado, so we made Denver our base of operations for the remainder of the year.
    • To the extent that we could still squeeze in travel, we decided to keep looking in Washington state through the rest of the winter because the real estate market there is less seasonal. WA tended to stay on our list of possibilities, despite a high housing cost, because it puts us close to three of our four parents. They are not getting younger, and my father especially had been experiencing more health issues.
  • Oct 2019: Not much house hunting. I presented at SQL Trail 2019 and SQL Saturday Denver. Later in the month I had another site visit in Chicago. Immediately after I flew out to Portland, OR. Drove out to visit with my dad in Klamath Falls, OR for a few days before SQL Saturday Oregon.
  • Nov 2019: SQL Saturday Oregon. Rode the #sqltrain up to Seattle for summit. My wife flew in while I was there, and we spent a few days in Port Townsend, WA and Whidbey Island before flying back to Denver.
  • Dec 2019: We went away for an anniversary trip (nine years). Late at night, on our anniversary, I was awakened by a phone call informing me that my father had passed away. Was able to make most short term arrangements by phone (eventually … but that’s another story). Flew back out to Oregon between Christmas and New Years to clean out his home before another month of rent came due.
  • Jan 2020: Check out of hotel, pack car, and drive away from Denver yet again. Work our way out to a Airbnb in Poulsbo, WA which served as our new base of operations. Two back-to-back on-site visits in Chicago this month … but one of their travel policies actually required me to fly back to Seattle and turn around. That’s a long flight … one mark against Washington. We discovered some real estate listings in some out of the way town called Camano Island, WA and added it to our search list.
  • Feb 2020: During our second house hunting trip to Camano, I walked through the door of the last house of the day and fell in love with the view. We decided to put in an offer which was accepted. We needed some old tax returns out of storage in Colorado – fortunately I had two more site visits in Chicago coming up … I was able to add an extra stopover in Denver to one of those trips. Filled out closing paperwork on Feb 27 and left car at new house. Flew out to SQL Saturday Rochester Feb 28, then immediately back to Colorado to get a moving truck. News is filled with coverage of the rapid spread of a novel coronavirus.
  • March 2020: Packed moving truck first few days of March. As we started driving the moving truck from Colorado to Washington we started getting calls warning us about toilet paper and bottled water shortages in WA. On March 6 we pulled the moving truck into the driveway of our new home.

What We Bought

“Nailed it!” – anon

Our wish list can be found above, here is what we actually ended up with. I do not see this as a failure in our requirements elicitation process, I prefer to think of it as agile process.

  • We are at the edge of a rain shadow. It’s not a desert … deserts are dry and rain shadows are … well … not damp. It’s totally different because … well … never mind. The lawn was green when we moved in, but water is limited due to concerns about salt water intrusion. As I write this the lawn has gone yellow and crispy for the summer.
  • We paid exactly $X01,000. But for the money we got a water view.
  • We are within two hours of the SEATAC airport if there isn’t traffic on I-5. Of course, this is I-5 we’re talking about so there is always traffic. But for flights I am also close to a couple of smaller airports (Everett and Bellingham) so there are options.
  • Single story house on a cozy, quarter acre lot with no basement and zero ADU potential.
  • Chickens are specifically prohibited by neighborhood covenants.

What Went Well

“I Love It When a Plan Comes Together” – Hannibal (George Peppard), The A Team

There are a number of aspects of our search that I think went well

  • We did, in the end, successfully move. And just in the nick of time, had we waited too much longer our experiences on the road would have changed drastically as COVID-19 blew up.
  • We not only chose, IMO we chose fairly well. Our new home has been a remarkably quiet and peaceful place to wait out quarantine. I can walk out to the bay every day and amuse myself and our neighbors by being the neighborhood’s least adept fisherman and crabber.
  • I was able to work continuously (but admittedly at a reduced workload) on the road.
  • We saw parts of the country we might never have seen otherwise because we mostly drove.
  • We did not really miss having a permanent address while we were on the road. Actually moving in and out of hotels is, of course, a hassle. But once we started doing longer stays at hotels we actually settled in pretty quickly and made some new friends with other long-term guests.
  • Getting mail was not as big of a problem as expected. In practice we found that we went back to Colorado often enough that our PO box worked fine. I did run into an issue where a client needed to overnight something to me, but renting a mailbox at the local UPS store worked out well (pro tip – went that way in this case because USPS requires proof of residency in the state for a PO box).
  • Due to some weird luck, I had a lot more on-site visits during this time than I typically do. This might sound like it would be inconvenient, but the extra travel actually caused surprisingly little disruption.
  • Our cable includes CBC as a local channel so we get to enjoy the Canadian version of Family Feud as well as Kim’s Convenience.

What I Wish We’d Done Differently

“The way that is THE way is not the WAY” – Lao Tzu, Tao Te Ching

Of course there are some lessons learned

  • I wish we’d more seriously considered buying an RV. I dismissed the idea of RV life relatively quickly because I wasn’t sure what we would do with the thing after buying a house, and also because I didn’t want our only mode of local transportation to be a giant dually pickup. Those concerns are probably insurmountable for me … but I still wish I’d thought harder before deciding to depend on hotels.
  • I wish we had meandered less. Part of the reason I supplied our brief itinerary above was to make the point that we actually spent remarkably little time house hunting because we were always moving. We relocated about once a week in the beginning. If I had it to do over, I would probably do longer stays at fewer locations. Besides making it easier to look around, it would have saved money – some extended stay hotels have amazing rates on month long stays.
  • I wish I had thought about this trip during open enrollment the year before and looked for a health plan with a national network (although since I’m self employed insurance options are usually grim and get worse every year).
  • Timing was not perfect. We did not have the luxury of picking an optimal time for this trip, but it did seem like we would have been better off if we were looking for home in 2018 instead of 2019 – a lot of the areas we looked at had recently experienced booms that we just missed out on. Additionally, we did not get serious about looking at stuff out east until too late in the year – I love our home in WA but it’s entirely possible we missed out on an even more awesome home in ME because we didn’t get up there when more homes were available.
  • When I start traveling again I may love this location less. If I need to fly in and out of SEATAC my best option is probably a train into Seattle followed by light rail to the airport. That may get old … wonder if it’s faster to get into Seattle from here by boat :).
  • I wouldn’t completely eliminate the road trip … but I do wish we’d driven less and flown more. Driving is a time suck.
  • Moving during a global pandemic sucks. Nothing can be done about this but there are a lot of challenges we faced due to timing
    • I had cut back my work schedule while we were on the road. After dropping a bunch of cash on a house I’d love to have a full schedule or even overload myself a bit. That’s difficult to do when the economy is slow.
    • It took months to both get cable installed and also to get a washer and dryer delivered. Ironically when the rest of the world was starting to work from home, I was forced to go back to an office (joined a coworking center) to get internet.
    • We miss our dogs. We are now ready to add some companions to complete our home. Unfortunately this is the worst time imaginable find a puppy. Or for that matter even adopt an adult dog. Or a Guinea Pig. Or a … well you get the picture. It may be Christmas or next year before we get to the top of any of the breeder’s lists or find a compatible pup available at the shelter. So far the closest we’ve gotten is a our new friend Bubba, a Betta fish.

Why NOLOCK Is a Thing For MSSQL

In my experience, few disagreements between groups of MSSQL developers and DBAs have been as long running, contentious, and unproductive as the debate about whether or not the use of the NOLOCK is acceptable. It seems clear to me, at least, that it is not really ever acceptable for use in production code (assuming MSSQL 2008 or better which isn’t a big ask) – but that’s not the interesting part of this debate. The really interesting thing, IMO, is that we’re still talking about NOLOCK today in much the same way that we did a decade ago.

For those lucky readers who aren’t already familiar, the NOLOCK query hint in SQL Server prevents a SELECT statement from taking shared locks to enforce data consistency. When MSSQL is in the default transaction isolation level with default settings, transactional consistency is guaranteed with a locking mechanism that prevents writers from updating data while another process is reading it, and prevents readers from accessing data while another process is writing. If the NOLOCK query hint is added to a SELECT statement, the reader portion of this locking mechanism is skipped. This means two things: we no longer have to be worried about readers getting blocked by writers, but because our transaction consistency has been intentionally disabled the we may get results that are in the in the middle of a change.

For the DBAs … Why Developers Do This

Before speaking to the developers about this, I think it’s also helpful to try to help DBAs understand whey this is a thing.

  • We don’t do a great job of explaining the issue. My experience has been that when most DBAs see code that is littered with NOLOCK hints, they push back by saying something like “NOLOCK is bad, you could get inconsistent data, may we please take these hints out?”. When that fails, it may escalate to “Is there anything I can say to persuade you to stop?” or possibly a more sarcastic “If you don’t care about the consistency of your data why are we using a database?”. Frequently that’s as far as the debate goes – it’s hard for us to change developer behavior if we can’t engage in their language, and those of us on the ops side aren’t always in a great position to do that. What’s missing is often guidance on what developers should do instead.
  • Developers get dinged when their code causes blocking. A really serious blocking issue can take down a system. Ideally this doesn’t happen because hopefully some kind of monitor has been set up that will alert if an unusual amount of blocking is happening. Regardless of whether production went down or the on-call DBA was awakened at three in the morning by an automated check, a developer who writes code that causes blocking may get yelled at. This tends not to happen if NOLOCK is liberally sprinkled through the code. No NOLOCK does not always eliminate blocking and yes other bad things may happen, but NOLOCK does tend to reduce the yelling.
  • It worked in test. Problems that we haven’t actually personally experienced don’t always seem real. This matters to the NOLOCK debate because serious consistency issues arising from dirty reads tend to be improbable. If the production system is 100 or even 10 times busier than a test system, there is plenty of room for these improbably things to happen in production even if they never occur in test. As more shops embrace test driven development, this disconnect between test systems and production becomes more problematic.
  • We don’t often have to think about transactions in MSSQL. It’s probably a stretch to say that a developer can go their entire career without ever having to commit a transaction, but I actually don’t think it’s that big of a stretch. Unlike some other database products, if we mostly work in single statements we don’t have to explicitly commit or rollback our work. I like this behavior personally but the fact that a junior developer doesn’t need to think about transactions very often does make it easy to forget that transactions are important.
  • Dirty reads are frequently OK. This is of course dangerous thinking as I’ll discuss later, but think about the simplified case of a selecting data from a single row of a single table. If an update to the data is in process and NOLOCK is not used, the code waits until the update is complete and then gets the new value. If NOLOCK is used, the code does not wait and may or may not get the new value, depending on how far along the update statement is. If we assume data is never rolled back, for a lot of applications this behavior may actually be acceptable – if we’re checking at the instance a value is changing we may not care if we get the old or new value. Don’t get me wrong, I’m not arguing that NOLOCK is OK here … but I also don’t think that it’s completely crazy that developers can get into the mindset of “we’ve thought about it, and we’re OK with dirty reads”.

For the Developers – Why NOLOCK is a problem

As tempting as it may be to use the NOLOCK hint, there is a healthy list of reasons to avoid its use

  • Optimistic concurrency is a better way to systematically avoid blocking. Ever since SQL Server 2008, we’ve had two flavors of optimistic concurrency (read committed snapshot isolation and also snapshot isolation). I will not dive into a detailed discussion of these here because others have done a great job (Kendra Little to name one of many), but my biggest issue with the NOLOCK hint is that we have better ways to prevent contention between readers and writers. If you are a developer who is reading this and is greatly concerned about blocking, instead of resorting to NOLOCK I’d encourage you to have a discussion with your DBA about enabling snapshot isolation – it can lead to a similar reduction in blocking but does so in a way that respects other transactions.
  • Knee-jerk NOLOCK is the real problem. Regardless of the above point, I personally wouldn’t bother arguing with a developer who uses NOLOCK once or twice a year. The real issue lies in adding the hint to every query – it’s maybe reasonable to say “I’ve thought about it, and a dirty read is OK here” once in a while. It’s hard to accept that this argument when applied to every query without forethought.
  • NOLOCK ignores transactions (other people’s transactions). Think about somebody checking their balance at a bank. If we don’t really think things through I could understand a developer wanting to believe that NOLOCK would be OK for this – if a change is in flight the difference between seeing the old value versus the new value could just be the same as it would have been if the customer spent an extra second standing in line (edited). The real problem with this thinking is that the update may be rolled back – for example if the other account involved in the transfer has insufficient funds. Even in cases where we might think at first blush that a dirty read could be acceptable, it’s possible that we’re mistaken in that belief when we consider other transitions happening on the system … and we could give folks hardcopy receipts or reports showing data that was technically never part of the database.
  • NOLOCK doesn’t actually mean no lock. This distinction mostly effects code that is running during something like a big nightly ETL job, but the NOLOCK hint actually only suppresses shared locks. It actually leaves other locks in place, specifically schema consistency locks … so at the end of the day even if dirty reads were not dangerous (the almost always are) it cannot even really be said that sprinkling this hint through code is always effective at preventing locking. It can actually make some locking issues worse.

Index Fragementation Still Matters

Executive Summary

Until recently a huge driver for index maintenance in SQL Server was that reading data from contiguous blocks on disk was more efficient than randomly scattered reads on magnetic media. Now that solid state storage is taking over, some see index defragmentation as wasted effort. While fragmentation may be less of a concern than it was in past times, regular index maintenance does still boost disk utilization as well as memory efficiency by reclaiming unused space inside pages.

The Short Version

Yes it is true that solid state storage is less sensitive than magnetic media to whether data is accessed sequentially versus accessed in a random order. Note that it is not actually true that this doesn’t matter at all, it does matter when we get close to the throughput of our storage (see below). But that is not the point of this post.

Remember that there are actually two different kinds of fragmentation that we discuss. The one we typically think of, where database pages are stored out of order on disk, is external fragmentation. As we may guess from the name, there is also another phenomenon frequently referred to as internal fragmentation. Internal fragmentation refers to inefficiency with how data is organized inside pages – specifically issues that cause us to have chunks of unused space inside pages. Obviously this has an impact on how much unused space is available inside our data files, but as pages are read into the buffer pool high levels of internal fragementation can actually impact how much usable data will fit in the buffer pool and eventually will drag on page lifetime.

How do we control internal fragmentation? The same way that we control external fragmentation – by rebuilding or reorganizing indexes. For some workloads it can be important to check for internal fragmentation (by way of avg_page_space_used_in_percent in dm_db_index_physical_stats) directly, but for most situations the main lesson is to continue defragmenting as we have for years.

The Long Version

Old School View of Index Maintenance

Think back to … say … 2010. Many of us were terribly excited about seeing “The Last Airbender” or “Hot Tub Time Machine”. Ugg boots were at the peak of their inexplicable popularity. Cee Lo was singing “F*ck You”. And many database folks in smaller shops were running SQL Server 2008 with something like 8GB of RAM on physical hardware backed up by spinning rust. The word “spinning” is what matters here. Our data was stored on physical platters. Before a page could be read into memory, we had to wait for two things to happen – the heads inside our hard drive had to be moved to the correct track on the disk, and then we had to wait for the correct portion of the disk to physically spin around underneath the head. Throughput is maximized if we read as much data as we possibly can while neighboring blocks are spinning past. In other words, doing a few large sequential reads is fundamentally more efficient than large numbers of small, random access reads.

Why does this matter? Mostly because we have historically expected the bottleneck in relational database servers to be I/O. If we know that sequential I/O is fundamentally more efficient than random access I/O, then the easiest way to get more bang for our storage buck is to arrange for more of our reads to be sequential. How do we do this? That’s the easy part. We identify those indexes that are not stored in contiguous blocks on the disk, and then we either rebuild them or reorganize them.

Do we rebuild or reorganize? That’s not something I’ll dig into in this post. In a nutshell, reorganizing an index simply redistributes data among the pages already allocated to the index while rebulding is a more drastic operation that actually rebuilds the index. Which makes more sense depends on many factors including SQL Server edition, whether or not index can be offline, whether or not we need to be able to interrupt the command, etc etc. A great post by Kendra Little on some of these issues can be found here.

Why Index Maitenance Isn’t Getting As Much Love Now

Technology moves quickly, and even since 2010 quite a bit has changed.

  • SQL Server is a data hoarder, and its house has gotten bigger. Think of SQL Server as an eccentric person whose house is filled with … say … stacks and stacks of old newspapers. The “house” in this example is memory on the server that SQL Server occupies, and the pages of newspapers are data pages from our database. If we ever ask ask for a piece of data from disk, it will get hoarded (cached) in memory for absolutely as long as the space is not needed for something more important. That’s actually a really good thing – if we give our database server large amounts of memory, there’s a pretty good chance that once the cache is warmed up any data that we’re actively using will be in memory. If most of the data we need is in memory already, that means we are not working the I/O system as hard which makes us a bit less sensitive to disk performance. If we do only have room to allocate 4GB to the buffer pool that’s not a lot of room for data. But as more folks are able to afford hundreds of GB of RAM it’s reasonable to assume there will be a higher cache hit ratio for a given amount of data.
  • More folks are aware of the importance of query tuning. Monitoring tools have gotten better. Thanks to events like SQL Saturday, education amongst the SQL Server community has improved. Odds are better today than they used to be that if a query is doing a huge index scan then somebody will notice and do some tuning. Scans really do make sense for some workloads, but if  we do have a workload where some large scans can be eliminated by tuning efforts then doing so actually accomplishes two things. First, the query tends to run faster because it tends to do less I/O. The second impact, however, can be less obvious. As large scans are replaced with smaller seek operations (or even smaller scans), that tends to make disk access more random. More random access means we notice the impact of external fragmentation less.
  • Finally the elephant in the room. More and more of us have transitioned from spinning magnetic media to solid state storage. Because retrieval is no longer dependent on moving parts, solid state devices tend to perform very well for random access workloads. Since the argument that was used on most of us to get us serious about index maintenance was based on the way spinning discs operate, the rise of SSDs has led to a widespread belief that index maintenance doesn’t matter anymore. It’s worth noting that even if sequential reads are no faster than random reads it is still possible that more IOPs are required in the presence of fragmentation. That means external fragmentation can still matter in high performance workloads – I will not discuss further here but I would refer the interested reader to Jonathan Kehayias’ post here.

These are all excellent points, and I tend to agree that external fragmentation (data out of order on disk) is not as much of an issue as it has historically been. That does not mean that index maintenance does not matter at all because reduction of external fragmentation was not the only reason that we rebuilt indexes. The other type of fragmentation that we worry about, and which is also reduced by index maintenance, is internal fragmentation. Internal fragmentation refers to unused space inside pages on data files. In other words, in addition to recording data physically on disk, index maintenance is also the mechanism that we use to reclaim space from deleted or updated records in our databases.

An Example

If anybody wishes to follow along with this example, here is the script that I used to create my sample database (click to expand). In a nutshell, the DB contains two tables. Into one table we insert a large amount of data in reverse order (so it will be perfectly fragmented, in terms of external fragmentation). Into the other table, we insert a large amount of data in order, and them delete the majority of it so that we have large holes of unused space on every page.

USE [master]
GO

CREATE DATABASE FragmentTest ON
PRIMARY ( NAME = N'Frag_P', FILENAME = N'[some_filepath_here]\Frag_P.mdf' , SIZE = 1GB , MAXSIZE = UNLIMITED, FILEGROWTH = 1GB ),
FILEGROUP main DEFAULT( NAME='Frag_D', FILENAME = N'[some_filepath_here]\Frag_D.ndf', SIZE=21GB, MAXSIZE = UNLIMITED, FILEGROWTH = 1GB )
LOG ON( NAME = N'Frag_L', FILENAME = N'[some_filepath_here]<span id="mce_SELREST_start" style="overflow: hidden; line-height: 0;"></span>\FRAG_L.ldf' , SIZE = 8000MB , FILEGROWTH = 8000MB )
GO

ALTER DATABASE FragmentTest SET RECOVERY SIMPLE;
GO

USE FragmentTest
GO

CREATE SCHEMA frag;
GO

CREATE TABLE frag.InternalFrag(
ID INT IDENTITY NOT NULL,
Payload CHAR(996) NOT NULL CONSTRAINT DF_InternalFrag_Payload DEFAULT 'Time to look big',
CONSTRAINT PK_InternalFrag PRIMARY KEY CLUSTERED( ID )
);

CREATE TABLE frag.ExternalFrag(
ID INT NOT NULL,
Payload CHAR(996) NOT NULL CONSTRAINT DF_ExternalFrag_Payload DEFAULT 'Time to look big',
CONSTRAINT PK_ExternalFrag PRIMARY KEY CLUSTERED( ID )
);
GO

-- Create internal framentation by populating a table with 10GB of data then deleting 7/8 of the data.
INSERT INTO frag.InternalFrag(Payload) VALUES('Time to look big');
GO 10485760

DECLARE @first_match INT;
DECLARE @last_match INT;

WITH x AS(SELECT TOP 100000 ID FROM frag.InternalFrag WHERE ID % 8 > 0)
SELECT @first_match = MIN(ID), @last_match = MAX(ID) FROM x;

WHILE @first_match IS NOT NULL AND @last_match IS NOT NULL
BEGIN
DELETE FROM frag.InternalFrag WHERE ID >= @first_match AND ID  0;

WITH x AS(SELECT TOP 100000 ID FROM frag.InternalFrag WHERE ID % 8 > 0)
SELECT @first_match = MIN(ID), @last_match = MAX(ID) FROM x;
END
GO

-- Insert about 10GB into the external frag table, in reverse order, to generate external fragmentation
DECLARE @count INT = 10485760;
WHILE @count > 0
BEGIN
INSERT INTO frag.ExternalFrag(ID) VALUES(@count);
SET @count -= 1;
END
GO

Lets go ahead and see what fragmentation looks like against these two tables like so

SELECT OBJECT_NAME( ps.object_id ) AS Tab,
	i.name AS Ind,
	ps.avg_fragmentation_in_percent,
	ps.avg_page_space_used_in_percent
FROM sys.dm_db_index_physical_stats( DB_ID(), DEFAULT,
		DEFAULT, DEFAULT, DEFAULT) ps
	INNER JOIN sys.indexes i ON ps.object_id = i.object_id
		AND ps.index_id = i.index_id;

pic_20180122_01

Image 1: This is not the fragmentation you are looking for

As expected, the ExternalFrag table where we intentionally inserted data out of order is extraordinarily fragmented. But what about the InternalFrag table? With fragmentation of less than 1% does that mean we do not need to worry about it? Actually what this really means is that the default “LIMITED” mode of the dm_db_index_physical_stats function doesn’t look at leaf-level pages so we are not getting information on what things look like at the leaf level. The fix is straightforward, we can instead run in the “SAMPLED” mode (or even “DETAILED” if we want to scan the entire leaf level … and have a ton of time to kill).

SELECT OBJECT_NAME( ps.object_id ) AS Tab,
	i.name AS Ind,
	ps.avg_fragmentation_in_percent,
	ps.avg_page_space_used_in_percent
FROM sys.dm_db_index_physical_stats( DB_ID(), DEFAULT,
		DEFAULT, DEFAULT, 'SAMPLED') ps
	INNER JOIN sys.indexes i ON ps.object_id = i.object_id
		AND ps.index_id = i.index_id;

pic_20180122_02

Image 2: There’s the wasted space

This is more like it. We have to wait longer for results, but the result set now tells us how much unused space is sitting in data pages waiting to be reclaimed. Those who are accustomed to looking at avg_fragmentation_in_percent are used to thinking of low numbers as good and high as bad. This is reversed for avg_page_space_used_in_percent – a low percentage of used space could indicate we need to rebuild (unless we intentionally specified a large fill factor). So in this case, almost 88% of the space in the InternalFrag table is not actually getting used. Why does this matter? The obvious reason is that if we aren’t intentionally padding the InternalFrag table then it is taking up about 8 times as much space as it needs to on disk. But also consider what happens when we run the following queries

SET STATISTICS IO ON
GO

SELECT COUNT(*) FROM frag.InternalFrag;
SELECT COUNT(*) FROM frag.ExternalFrag;

On my workstation here are the results

(1 row affected)

Table 'InternalFrag'. Scan count 5, logical reads 1321485, physical reads 0, read-ahead reads 1309772, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.

(1 row affected)

Table 'ExternalFrag'. Scan count 5, logical reads 1319382, physical reads 2, read-ahead reads 1314985, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.

Now what happens if we defragment the indexes like so?

ALTER INDEX PK_InternalFrag
	ON frag.InternalFrag REORGANIZE;
ALTER INDEX PK_ExternalFrag
	ON frag.ExternalFrag REORGANIZE;

After this, when we re-run the COUNT(*) queries above we get the following message

(1 row affected)

Table 'InternalFrag'. Scan count 5, logical reads 174607, physical reads 2, read-ahead reads 170547, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.

(1 row affected)

Table 'ExternalFrag'. Scan count 5, logical reads 1319552, physical reads 9, read-ahead reads 1325530, lob logical reads 0, lob physical reads 0, lob read-ahead reads 0.

That is an 87% reduction in logical reads for the query against InternalFrag. If this were a real wold scenario, that could mean at the end of the day 87% fewer pages that could help satisfy future queries getting unceremoniously dumped from memory if we ever scan this table.

For the sake of completeness, before we leave lets take another look at the results of the dm_db_index_physical_stats query to be absolutely certain that both types of fragmentation have been cleared up.
pic_20180122_03

Internal Fragmentation Is Important

One of my pet peeves on most projects I’ve joined is that the index maintenance jobs are typically checking for high levels of avg_fragmentation_in_percent and ignoring avg_page_space_used_in_percent. Am I saying that we’ve been doing things wrong? It depends. But for smaller DBs … yeah kind of. Checking for excessive amounts of free space inside data pages directly is probably better … because unused space is more of an issue than pages that are merely out of order on many systems nowadays. I’m not saying we should not check for external fragmentation at all though, I actually like to keep an eye on both. Remember that even on solid state storage, external fragmentation still matters a little as we get close to the performance limits on our hardware … and if we say that our servers are I/O bound then that means we probably do push this limit at times (by definition). Assuming that there is enough slow time on the system for a call to dm_db_index_physical_stats in either sampled or detailed mode as well as any desired index rebuild/reorganize operations I like to keep an eye on both.

What If There Isn’t Time?

The abover advice should be fine for the vast majority of folks reading this. But there is an issue with even the sampled mode of dm_db_index_physical_stats – it takes longer. We may not care how long this takes if we are looking at something like AdventureWorks where the difference between limited and sampled modes is measured in seconds or minutes. But for larger datasets, it’s possible that limited mode will take an hour or two (or even longer) while sampled could take several hours to complete. On such systems, there is a chance that there isn’t time to both check for unused space and also do any useful amount of defrag work. One possible fix is simply to just check fragmentation levels less frequently. For example, rather than checking fragmentation every day, maybe it is possible to check fragmentation levels once per week and scatter rebuild operations over slow periods on their other days. Another possibility could be to not spend time on dm_db_index_physical_stats on any recurring basis and to instead develop a fixed schedule for rebuilding indexes that are known to be problematic.

There is another possibility though. My examples that show external fragmentation without internal, and more importantly internal fragmentation without external are a bit contrived. In real world situations it is normal for the two kinds of fragmentation to be seen together. Workloads vary so do your own testing … but for most real-world situations external and internal fragmentation tend to be closely correlated. Tables that have high levels of internal fragmentation are going to tend to also have significant external fragmentation. I would like to reiterate – whenever practicable I am a huge advocate for tracking internal fragmentation directly. That said, if the amount of time needed for sampled mode is an issue, odds are that rebuilding externally fragmented tables will keep internal fragmentation in check. Just be sure to consider running an extra rebuild or reorg after doing massive deletes or updates.

Why Relying on SSMS for Execution Plans Isn’t Enough

One thing I’ve noticed about myself – I don’t tend to want to blog about the same subjects that I want to talk about at SQL Saturday. Different media, different audience, so different topics probably aren’t surprising. But in an effort to be more consistent … here is a taste of the kind of material that I cover in my ‘Why Should I Care about .. The Plan Cache” presentation.

If you’re still reading this, there’s a great chance than you’ve looked at an execution plan by putting a query into SSMS, hitting the button to ask for the actual plan, and then executing the query. Pretty easy, pretty awesome, that’s how performance tuning is done, right? Well, even if we ignore the possibility of different session settings (won’t get into that here), there are a few issues.

Why It’s Not That Easy

  • If the end user doesn’t report an issue right away, they might not remember exactly what they were doing at the time they noticed a performance issue.
  • Even if the user does remember, they usually can’t tell you what query was running (they were probably using some kind of software).
  • Documentation for that software likely won’t drill down to the level of what queries are run against the database.
  • If software documentation does exist and actually does include queries, that’s a very detailed software document. Has it been kept up to date?
  • If the software was developed in house, why not ask the developer? If the developer that wrote it is still around, they probably won’t know off the top of their head exactly what the query looked like. Odds are they would have to investigate.
  • Even if it’s possible to quickly find exactly where in the code the problematic query is executed, that might not give us the query. It’s becoming more common for some kind of dynamic SQL to be involved, which means the actual query could depends on parameter values.

It may sound like I’m trying to say it’s not reasonable to ask the development team what TSQL is actually getting run. Of course that’s a reasonable thing to ask. The point I’m trying to make is just that it likely that you will not get an answer immediately. When troubleshooting performance issues time usually matters, so there is usually better if you can quickly find out for yourself what is causing the problem.

So … It Appears that September Will Be all About the MCM

News about the death of the MCM / MCSM broke right around the time I was starting to write up an interesting case study involving the ascending key problem (for those unfamiliar, see Gail Shaw’s excellent writeup for example), so that post will probably need to wait for a while. It’s not my intent to rehash the #SQLMCM issue here, if anyone who cares about the MCM (Microsoft Certified Master) program isn’t already up to speed on the basic issues a good starting point can be found from Jason Brimhall and at the #SQLMCM hash tag on twitter. Part of the reason that I am not really ranting is that I am actually relatively fortunate. I had been planning to take the lab exam (final hurdle before becoming a MCM) at the end of September anyway so the only real impacts on me are

  • I need to decide whether or not it’s worth following through with the exam when the certification is dying (the answer is probably yes).
  • I am sure I will need to cover this out of my pocket now. I’ve been fortunate enough to have a part-time W-2 gig (on top of my consulting load) that has actually been quite supportive of my MCM quest up to this point. Now that “the email” has gone out I am frankly too embarrassed to even ask if they would care to pony up a couple of grand more for the final test when the plug is getting pulled the day after (maybe literally) I take the exam. Maybe the only reason to consider doing so is that I actually wrote the MCM attempt into my performance plan for the year. This is actually not as bad as it sounds, I am dual employed so it really is only fair that Rick-the-consultant pays part of the certification expense which will benefit me equally in both of my current roles.
  • Some lost prep time. When I said I planned to take the exam at the end of September that was my optimistic estimate. In the back of my head I had actually started telling myself I may wait until the end of October. That exam is no joke, an extra month of prep time would have been handy.
  • It’s all riding on this attempt. Before the announcement I figured that if I did not pass this attempt I could consider regrouping for another try before the MCM exams were retired in favor of the new MCSM exams.

First : MCM vs MCSM – A Long Tangent

But I’m not interested in dwelling because I really am one of the lucky ones. I’m more interested in offering my perspective as one who is in the pipeline at this point in history. First and foremost I was always a lot more excited about the legacy MCM certification than I was about the MCSM. I just felt “Microsoft Certified Master” was an awesome description. It is intuitive. It rolls off the tongue. It is clear. I imagine my future self shaking hands slightly more firmly and standing slightly straighter as “Rick Lowe, Microsoft Certified Master”. It is immediately clear to any person who hears this exactly what I am claiming (that I am awesome), why I feel justified in claiming it (my awesomeness has been certified), and what evidence is available (this Rick guy should be able to cough up a transcript sharing code). This is actually why I am ready to take the exam, if I had not been concerned with becoming a MCM I probably would have been hanging back, updating my credentials from MCITP to MCSE and waiting from the MCSM exams to be published.

On the other hand, when I imagine a possible future self introducing himself as “Rick Lowe, MCSM”, or worse “Rick Lowe, Microsoft Certified Solution Master on the Data Platform” I am pretty sure I will be slouching as the eyes of whoever I’m speaking to glaze over slightly. “That is not just more alphabet soup”, my future self says, “that is a pinnacle certification. Here, let me draw you a diagram of all the new SQL Server certifications so you can see this blue pyramid thingie. Look, there’s no gray at all in this pyramid which means this is the good one. You should really be rather impressed with me about now”. I suppose the alphabet soup issue is what really bothered my about the change from MCM to MCSM. Aside from just being a cool title MCM, both when spoken and written, looks quite different from MCITP which could be important when speaking with somebody outside of the SQL Server community. Even if they may have seen hundreds of resumes for “paper” MCITPs it is possible that the fact MCM sounds different may be enough to get their attention. MCSM, on the other hand, visually and verbally kind of blends in with MCSA and MCSE.

If it seems like I’m taking cheap shots at a particular set of visual aids that is not my intent. I love visual aids and have nothing against blue and grey pyramids. If I haven’t been clear enough, the point I am really trying to make is that the visual aids are not just helpful for understanding the certification roadmap, they may actually be kind of necessary for understanding the current roadmap unless one has a very good head for acronyms. And this does not help when it comes to acceptance of the current generation of credentials by business leaders.

But more importantly, Can we chart our own destiny?

Plenty has been written on the tricky revenue problem posed by the MCM exams (rather steep fixed costs would need to be offset by a relative handful of test takers before this test is profitable). One commonly expressed concern is that it may just be too difficult for Microsoft to make a profit from the MCM/MCSM program and may simply never reintroduce the concept of a pinnacle certification. Another is that they may fix the revenue issue by dumbing down the tests enough to increase the percentage of SQL Server MCPs who would be able to pass. More potential conversions would probably mean more test takers which would definitely mean more revenue. Both of these cases are troublesome for many in the community who value the rigor and the “unfakeability” of the MCM/MCSM exams.

My question at this point is this : if we as a community do not have a lot of faith that Microsoft will bring back the MCM in a satisfactory form, or if we are concerned that we just care more about this particular certification than they do, why are we waiting for them to do so?

It’s probably not realistic for anyone to expect the creation of a “Community Certified Master of SQL Server” program. Don’t get me wrong, it would be fantastic if somebody could come to a conference, sign up for a “test your mettle” hands-on precon or postcon, and potentially walk out as a “CCM”. But getting the community involved in the master testing process does not change the underlying economic issues. Developing the test would take a tremendous amount of effort. Administering the test would be a nightmare. Do we offer the test online? Probably not because it would be too easy for somebody to either cheat or capture the questions to look up later. Establish a dedicated testing center? Probably not realistic for this volume of test takers. Remote proctor? Maybe, but that could be very expensive because it probably requires something close to a 1:1 ratio of proctors to test takers. Co-locate with a conference? Might be the most workable but is it a problem if the exam can only be attempted once or twice a year?

And of course, even if a delivery method is found this does not change the underlying issues. Developing a MCM-type test would be very expensive (it bears repeating). Convincing industry that it should care about the CCM would be even more difficult than it was to try to convince them to care about the MCM. I am sure there are many many more.

Unfortunately I actually do not have any productive suggestions here, all I can really do at this point is suggest that the death of the MCM could be an opportunity for us to do something even better. And it may be foolish to believe this means testing – as Brent Ozar points out there are a lot of cool experiments we could conduct that have nothing to do with a traditional certification program. But if anyone does have an idea I may be interested in pitching in. After October 1, of course. The rest of September is cut out for me.

Coming soon

Hi all,

I have a little extra time on my hands for the next few months, which means this wasn’t only the ideal time to start blogging but also that I should be able to post relatively frequently for a while. That said, I’m getting ready to disappear on a rafting trip for a week. If you discover this space while I’m gone and are wondering whether or not it’s worth coming back here are some topics I’m planning to write about in the next few months.

  • The correct way of getting Oracle Instant Client for work with SSRS / SSIS. Google search may be leading you astray.
  • For the DBAs : The potential of Entity Framework. Why I really wish I could love EF.
  • For the developers : The failure of Entity Framework to live up to its potential. Why EF may be causing your DBA to drink in the morning.
  • The ascending key problem. Why did performance suddenly get inconsistent shortly after we deployed?
  • CRUD squared. When stored procedures go awry (AKA Rick loses some friends part 1).
  • That time I turned on RCSI for the sole purpose of getting the developers to stop using nolock. Wasn’t that awesome? Or was it more of an evil waste of resources? (AKA Rick loses some friends part 2)
  • Social capital at the office. How to get the mean kids to realize how brilliant you are and start listening to you.
  • The limitations of self learning from the internet. Why I frequently pay out of my own pocket to go to conferences.

But more importantly, feel free to contact me to ask questions or even just suggest that I cover a particular topic. This request may be more relevant in the future because you probably can’t tell from a single blog post how valuable my opinion is, but ultimately I do this because I love talking about SQL Server. If nobody is reading this then I’m just talking to myself which I have been known to do that on occasion, but I would much rather talk to somebody else. The more I know about what issues you would most like my warped perspective on, the more productive that conversation can be.