Database Optimization Techniques to Increase SQL SERVER Performance – Part III – Index on multiple columns
May 23, 2009 1 commentIndex on multiple columns for SQL performance
Since clustered index records the table and arranges the data according to the index key, SQL Server allows only one clustered index per table. This results in amazing performance and the worry arises when you need to order the data by more than one column. Since we can’t use clustered index for multiple columns, a unclustered index is used to gain an increase in performance. We can specify a key value for every unclustered index, plus the value obtained from cluster index; which acts as a pointer to the actual values when we need their data. If a unclustered index is keyed on the values needed for a given task then query engine will never be in need of visiting the actual rows. After learning everything it needs from the index and scope then it will visit the qualifying rows.
Related Posts
-
April 19, 2016
4 MySQL clients for PHP developers in Windows
Using client apps for MySQL provides more than just a well-presented representation of your database. It elevates the level of accuracy and time saved by database administrators. And every dollar saved is a dollar earned in profit for your business. Hence, it makes total sense to go for MySQL client
4 series, Databases, PHP Programming0 comments -
December 5, 2017
Is 2018 Going to Be the Year of Progressive Web Apps?
If you are interested in ringing in the New Year with better web design and app development, you need to be sure that progressive web apps are central to your strategy. This is the new web of your app development, as referenced by the fact that companies that embrace these


