Monthly Archives: September 2020

Check for index fragmentation

Index fragmentation is bad and makes you queries runs slower than expected, and requires additional space on you hard drive. SQL Server stores data in 8KB pages. These 8KB pages are stored sequentially in heap tables, that is tables without any clustered index. In tables with clustered indexes (or non-clustered covered indexes) data is stored… Read More »