Corruption With Backup Compression And TDE In SQL 2017
Last week I spent a good bit of time dealing with a corruption issue, and as it turns out I may actually have found a bug in SQL Server 2017. …
Last week I spent a good bit of time dealing with a corruption issue, and as it turns out I may actually have found a bug in SQL Server 2017. …
As I build out my new SQL Server 2017 Availability Group in Azure, running on Windows 2016, I’m wanting to leverage some of the new technologies available. I’ve already written …
The slides from my session, Lessons Learned From An Azure Migration, are attached here. Thanks to everyone who attended! If you happened to attend my session, please leave a comment …
Next Friday, December 8th 2017, I will be speaking at the Nashville SQL Server User’s Group. My topic will be “Lessons Learned From An Azure Migration”, where I will be …
Last week I announced 3 new open source SQL Server projects that I have on GitHub. One of those projects is SQL Server Permissions Manager, and today I would like to …
The slides from my session, Building Better SQL Server Databases, are attached here. If you happened to attend my session, please leave a comment below and let me know what you …
Today I would like to officially unveil 3 new open source SQL Server projects that I have on GitHub! I will have upcoming blog posts that discuss each project in …
When setting up SQL Server Availability Groups on Azure virtual machines, one of the requirements is that you use a load balancer for your Availability Group listener. The load balancer stores the …
One of the new features that I’m excited about implementing on my Windows 2016 SQL Server 2017 servers is the ability to use Group Managed Service Accounts, or “gMSA” for short. …
I recently had a case where I needed to download a database backup to my laptop. It usually takes about 12 hours for this particular backup to copy down, so …
In a previous Index Basics post we went over the importance of having a Clustered Index on your tables, and we learned that SQL Server will automatically create a Clustered …
Like most Database Administrators, I have a standard set of Trace Flags that I implement on my SQL Servers. These are my tried and true trusty companions, used to help …
Now that SQL Server 2017 is out it’s time for everyone to start migrating to it, right? RIGHT? Well, in my case, the answer actually is “Yes!” At my day …
The slides from my session, “Managing Your SQL Server When You Don’t Have A DBA”, are attached here. In this particular presentation there are a lot of links to documentation, …
I have a confession. When I was a developer, I didn’t understand indexes in SQL Server. I rarely added them to my tables, and when I did there was not …
Sometimes it becomes necessary to change the owner of a database. When a database is first created, SQL Server likes to set the owner of that database to the login …
Security and permissions are a big part of a DBA’s job, and being able to find out things such as who has elevated login permissions, or when the last time …
Many people don’t realize that DBCC CHECKDB actually uses an internal database snapshot of the database to run the consistency checks on. (See the “Internal Database Snapshot” section of the …