What are the different types of indexes, what are the benefits of each? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T03:34:40Z http://stackoverflow.com/feeds/question/135730 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each 5 What are the different types of indexes, what are the benefits of each? Brian G 2008-09-25T20:12:25Z 2008-09-27T18:31:46Z <p>What are the different types of indexes, what are the benefits of each?</p> <p>I heard of covering and clustered indexes, are there more? Where would you use them?</p> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/135742#135742 2 Answer by Kevin Fairchild for What are the different types of indexes, what are the benefits of each? Kevin Fairchild 2008-09-25T20:13:50Z 2008-09-25T20:13:50Z <p><a href="http://www.odetocode.com/Articles/70.aspx" rel="nofollow">OdeToCode has a good article covering the basic differences</a></p> <p>As it says in the article:</p> <blockquote> <p>Proper indexes are crucial for good performance in large databases. Sometimes you can make up for a poorly written query with a good index, but it can be hard to make up for poor indexing with even the best queries.</p> </blockquote> <p>Quite true, too... If you're just starting out with it, I'd focus on clustered and composite indexes, since they'll probably be what you use the most.</p> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/135753#135753 3 Answer by mmaibaum for What are the different types of indexes, what are the benefits of each? mmaibaum 2008-09-25T20:16:14Z 2008-09-25T20:16:14Z <p>I'll add a couple of index types</p> <p>BITMAP - when you have very low number of different possible values, very fast and doesn't take up much space</p> <p>PARTITIONED - allows the index to be partitioned based on some property usually advantageous on very large database objects for storage or performance reasons.</p> <p>FUNCTION/EXPRESSION indexes - used to pre-calculate some value based on the table and store it in the index, a very simple example might be an index based on lower() or a substring function. </p> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/135792#135792 6 Answer by Chris Shaffer for What are the different types of indexes, what are the benefits of each? Chris Shaffer 2008-09-25T20:23:52Z 2008-09-25T20:23:52Z <ul> <li>Unique - Guarantees unique values for the column(or set of columns) included in the index</li> <li>Covering - Includes all of the columns that are used in a particular query (or set of queries), allowing the database to use only the index and not actually have to look at the table data to retrieve the results</li> <li>Clustered - This is way in which the actual data is ordered on the disk, which means if a query uses the clustered index for looking up the values, it does not have to take the additional step of looking up the actual table row for any data not included in the index.</li> </ul> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/135816#135816 1 Answer by skaffman for What are the different types of indexes, what are the benefits of each? skaffman 2008-09-25T20:26:18Z 2008-09-25T20:26:18Z <p>Different database systems have different names for the same type of index, so be careful with this. For example, what SQL Server and Sybase call "clustered index" is called in Oracle an "index-organised table".</p> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/135824#135824 1 Answer by MarlonRibunal for What are the different types of indexes, what are the benefits of each? MarlonRibunal 2008-09-25T20:27:21Z 2008-09-25T20:27:21Z <p>I suggest you search the blogs of Jason Massie (<a href="http://statisticsio.com/" rel="nofollow">http://statisticsio.com/</a>) and Brent Ozar (<a href="http://www.brentozar.com/" rel="nofollow">http://www.brentozar.com/</a>) for related info. They have some post about real-life scenario that deals with indexes.</p> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/136272#136272 2 Answer by dland for What are the different types of indexes, what are the benefits of each? dland 2008-09-25T21:29:18Z 2008-09-25T21:29:18Z <p>PostgreSQL allows partial indexes, where only rows that match a predicate are indexed. For instance, you might want to index the customer table for only those records which are active. This might look something like:</p> <pre><code>create index i on customers (id, name, whatever) where is_active is true; </code></pre> <p>If your index many columns, and you have many inactive customers, this can be a big win in terms of space (the index will be stored in fewer disk pages) and thus performance. To hit the index you need to, at a minimum, specify the predicate:</p> <pre><code>select name from customers where is_active is true; </code></pre> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/136328#136328 1 Answer by David Aldridge for What are the different types of indexes, what are the benefits of each? David Aldridge 2008-09-25T21:36:32Z 2008-09-25T21:36:32Z <p>Oracle has various combinations of b-tree, bitmap, partitioned and non-partitioned, reverse byte, bitmap join, and domain indexes.</p> <p>Here's a link to the 11gR1 documentation on the subject: <a href="http://download.oracle.com/docs/cd/B28359_01/server.111/b28274/data_acc.htm#PFGRF004" rel="nofollow">http://download.oracle.com/docs/cd/B28359_01/server.111/b28274/data_acc.htm#PFGRF004</a></p> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/142327#142327 0 Answer by Constantin for What are the different types of indexes, what are the benefits of each? Constantin 2008-09-26T22:19:53Z 2008-09-26T22:33:34Z <p>SQL Server 2008 has <a href="http://www.google.md/search?q=microsoft+sql+server+2008+filtered+indexes" rel="nofollow">filtered indexes</a>, similar to PostgreSQL's <a href="http://www.postgresql.org/docs/8.0/static/indexes-partial.html" rel="nofollow">partial indexes</a>. Both allow to include in index only rows matching specified criteria.</p> <p>The syntax is identical to PostgreSQL:</p> <pre><code>create index i on Customers(name) where is_alive = cast(1 as bit); </code></pre> http://stackoverflow.com/questions/135730/what-are-the-different-types-of-indexes-what-are-the-benefits-of-each/142458#142458 0 Answer by jimmyorr for What are the different types of indexes, what are the benefits of each? jimmyorr 2008-09-26T23:14:26Z 2008-09-26T23:14:26Z <p>Convention wisdom suggests that index choice should be based on cardinality. They'll say, </p> <blockquote> <p>For a <em>low cardinality</em> column like GENDER, use bitmap. For a <em>high cardinality</em> like LAST_NAME, use b-tree.</p> </blockquote> <p><strong>This is not the case with Oracle</strong>, where index choice should instead be based on the type of application (OLTP vs. OLAP). DML on tables with bitmap indexes can cause serious lock contention. On the other hand, the Oracle CBO can easily combine multiple bitmap indexes together, and bitmap indexes can be used to search for nulls. As a general rule:</p> <blockquote> <p>For an <em>OLTP</em> system with frequent DML and routine queries, use btree. For an <em>OLAP</em> system with infrequent DML and adhoc queries, use bitmap.</p> </blockquote> <p>I'm not sure if this applies to other databases, comments are welcome. The following articles discuss the subject further:</p> <ul> <li><a href="http://www.oracle.com/technology/pub/articles/sharma_indexes.html" rel="nofollow" title="by Vivek Sharma">Bitmap Index vs. B-tree Index: Which and When?</a> </li> <li><a href="http://www.dbazine.com/oracle/or-articles/jlewis3" rel="nofollow" title="by Jonathan Lewis">Understanding Bitmap Indexes</a></li> </ul>