Hi, i have a Sql Server 2008 database, with a table that has around of 2.000.000 registers. The schema of the table is the following:
idSpecie (PK, int) | Kingdom | Phylum | Class | Order | Family | Genus | Specie
The kingdom, phylum, class, order, family, genus and specie columns are all varchar(50).
This table is fixed, and will never get any update/insert/delete, but it receives a lot of search queries in all of the columns. Is there a way to improve performance on these queries?
Thanks a lot!