News

In a SQL Server, two types of indexes exist; Clustered and non-clustered indexes. Both clustered indexes and non-clustered indexes have the same physical structure. Moreover, both of them are stored ...
Do NOT simply create these indexes. The SQL Server does not take into account indexes which exist which are similar to the current indexes, nor does it take indexes which are similar to each other ...
First introduced in SQL Server 2012, columnstore indexes can give you major performance gains -- provided you have the right workloads. Here's how columnstore indexes work and what types of data ...
In SQL Server 2012, we introduced the memory optimized columnstore index. This resulted in huge query performance improvements but columnstore indexes had one significant disadvantage – they couldn’t ...
When data is stored row-wise, the number of rows per page is relatively few, ... For more information about using columnstore indexes, check out the MSDN article Columnstore Indexes and our new SQL ...
I wanted to get some suggestions for scheduled maintenace on a SQL Server 2000 box that is hosting a relatively small database (<=13GB). I already have a weekly integrity check that reorganizes ...