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 30, 2010
4 Things you should let your web development client know
Not all the web clients are tech or web savvies. Many times you should pave them their success path online. Here are few a list of 4 important things which you should let your client know, if they trust your web development skills. 1. Flash: When they ask for a
4 series, CMS, Content Management Systems, Flash, Internet Marketing, Opensource, Search Engine Optimization, Web business, Web content, web design, web programming9 comments -
July 10, 2017
4 CSS Preprocessors for Your Web Development
4 CSS Preprocessors for Your Web Development A big advantage of a CSS pre-processor is the value you can add to your client during the web development project. : Sass As a mature, highly stable, dynamic, and powerful CSS extension, Sass plays a significant role in web development projects. You


