I have a database with 10 tables (give or take). The primary keys for these tables are IDENTITY columns. I can tell you already that there will be lots of joins.
In this case I was thinking of creating a covering clustered index for each table for the primary key and some other column that would be often required in those joins.
I was also thinking that I could add an extra nonclustered index on other less frequently used columns.
I also know that the inserts will be made on at a time (btw what does
In this case I was thinking of creating a covering clustered index for each table for the primary key and some other column that would be often required in those joins.
I was also thinking that I could add an extra nonclustered index on other less frequently used columns.
I also know that the inserts will be made on at a time (btw what does