SQLServer

Disabling Clustered Indexes in SQL Server – a really good idea?

Last week I taught an internal SQL Server Performance Tuning course to a customer in Switzerland. As usual we had a lot of fun, and at some point an attendee asked me one of the best questions of my life: “Can you disable a Clustered Index?” At first I was really scared about that question, …

Disabling Clustered Indexes in SQL Server – a really good idea? + read more

Clustered Indexes – Advantages & Disadvantages

Every time you create a Primary Key constraint in SQL Server, the constraint is (by default) enforced through a Unique Clustered Index. This means that you need to have in that column (or these columns, if you have defined a composite Primary Key) unique values. And as a side effect your table data is physically …

Clustered Indexes – Advantages & Disadvantages + read more

Database Scoped Configuration in SQL Server 2016

SQL Server 2016 will be really impressive. Since a few days ago Microsoft has made the RC0 version available for download. I have already done a quick tour through the RC0 version, and one of the nicest new features is the Database Scoped Configuration which I want to cover in today’s blog post. Database Scoped …

Database Scoped Configuration in SQL Server 2016 + read more