The Bit Bucket

SQL Down Under show 70–Aaron Bertrand–SQL Server 2016 SP1, SQL Server on Linux, SentryOne Plan Explorer

Hi Folks,

I got to record another podcast last week and it’s published now: SQL Down Under Podcast

The guest this time was Data Platform MVP Aaron Bertrand. We initially planned to mostly just discuss SentryOne Plan Explorer because all the Pro features were now available in the free edition, which is an awesome situation. But the release of SQL Server 2016 SP1 came the week before, and as both Aaron and I were deeply invested in the changes that occurred there, we spent time discussing it, and also SQL Server on Linux because the public preview for that was also announced.

2016-11-26

SQL Server Management Studio and Usability

SQL Server Management Studio has moved into the Visual Studio 2015 shell. In general, that’s a really good thing. There are many built-in benefits that come from using that shell. I’ve been showing people many of these. One that surprises many people is the ability to change the font in Object Explorer. No longer do you need to squint at the tiny writing in Object Explorer. You too can change the text in Object Explorer to a readable size (particularly on high-resolution monitors):

2016-11-26

SQL Down Under Show 69: with guest Data Platform MVP Glenn Berry

Hi Folks,

The next SQL Down Under show is now online. In it, Glenn Berry discusses hardware and hardware-related performance issues for SQL Server.

You’ll find the show here: SQL Down Under Podcast

Enjoy !

More on Glenn:

Glenn Berry is a Principal Consultant with SQLskills. He has worked as a SQL Server professional for many years in a variety of roles, most recently as Database Architect for Avalara in Parker, CO.

2016-10-16

FIX: The unattended execution account cannot be set at this time

I ran into this one today and it’s the in the category of things that I’m likely to run into again one day so it’s worth recording it here.

I was trying to configure an unattended execution account for SQL Server Reporting Services 2016 and was getting the above error.

The problem was that even though the machine is just in a workgroup, SQL Server Reporting Services Configuration Manager needs a domain or machine specified for the user name.

2016-09-01

Database on a diet–final section (part 4)

Hi Folks,

I’ve been writing articles for SQL Server Magazine as part of my Data Tales series.

Over the last couple of months, I’ve been writing a min-series about a database on a diet.

Earlier parts described the need for size reduction, how ROW and PAGE compression come into play, how to choose between them, etc.

Part 4 (the final part) is now online here:

http://sqlmag.com/sql-server/data-tales-9-case-database-diet-part-4

It covers GZIP compression of large string fields, PDF size reduction in BLOBS, and more.

2016-08-12

SQL Server index updates vs PostgreSQL index updates

The link below is to quite a fascinating article that on the surface is about why Uber moved to MySQL from PostgreSQL.

What it really is about is a severe limitation in how PostgreSQL indexes are updated.

With SQL Server, if you update a few columns in a row, only the indexes that have that column are updated. In PostgreSQL, all indexes still need to be updated. I understand why they’ve done that but it’s not a good outcome.

2016-08-04