Is it a good idea to create index on field with only a few different values?


If you have a table with a lot of records and one of the fields stores values like 'Y' and 'N' or something similar (i.e. not a lot of different values) it does not help performance to create index on such field. Even worse, if you do create index and it does get used it will slow down the queries. Such index has low selectivity (number of records one index node identifies is huge - perfect selectivity is when one index node identifies one record).

You might want to consider adding that field to some other (primary key for example) which is already indexed and often used in WHERE clause or JOINs. This is very effective with Firebird 1.x, while Firebird 2.x and higher are smarter and work around those duplicates.


Do you find this FAQ incorrect or incomplete? Please e-mail us what needs to be changed. To ensure quality, each change is checked by our editors (and often tested on live Firebird databases), before it enters the main FAQ database. If you desire so, the changes will be credited to your name. To learn more, visit our add content page.



All contents are copyright © 2007-2024 FirebirdFAQ.org unless otherwise stated in the text.


Links   Firebird   News   FlameRobin   Powered by FB: Home Inventory   Euchre  
Add content   About  

Categories
 Newbies
 SQL
 Installation and setup
 Backup and restore
 Performance
 Security
 Connectivity and API
 HOWTOs
 Errors and error codes
 Miscellaneous