Posted by SQL on 09/27/05 19:53
For selects you should have your indexes as close to 100% as possible,
if this table is frequently modify make it around 80%-90%
Also did you check the fragmentation level of your table?
A lot of times this improves speed dramatically
run DBCC SHOWCONTIG ('YourTableName') and look at Scan Density, Avg.
Bytes Free per Page and Fragmentation Levels
If your density is low and/or fragmentation high run DBCC INDEXDEFRAG
(dbname,tablename,1)
Lookup DBCC SHOWCONTIG and DBCC INDEXDEFRAG in Books online
Have you tried horizontal partitioning? This might benefit you
http://sqlservercode.blogspot.com/
[Back to original message]
|