I have an SQL Server 2005 table named 'EventTable' defined as such:
EventID, EventTypeCode, EventStatusCode, EventDate
Currently the table has a clustered index on the primary key 'EventID', there are no other indexes currently
EventTypeCode and EventStatusCode columns are CHAR(3) (examples are 'NEW', 'SEN', 'SAL') and are foreign keys
Common Selects will be...
select * from EventTable Where EventDate = @dateparam;
select * from EventTable Where EventTypeCode = @eventtype;
select * from EventTable Where EventStatusCode = @statustype;
What index strategy would you use to handle Select statements above?
Is it better to have a covering (compound) index on the 3 columns? If so, what order should the compound index be in?
Or a separate index on each of the 3 columns?
The table will grow at the rate of about 300 events per day..
It will also be common to execute queries such as
where EventDate between '2008-12-01' and '2008-12-31'
and EventTypeCode = 'todo'
- the table is more likely to grow at 500-800/records per day rather than 300
- the queries mentioned in the initial question will be run many times throughout the day, during normal use of the ASP.NET application
- NHibernate 'HQL' is used to perform such queries
- there is no initial load of data, the table only sits at about 10K records now because this is a new app
- ...I'm more or less just trying to avoid the customer having to call us in a couple years to complain about the app becoming 'slow' since this table will be hit so much