lpatnaik
Programmer
- Jul 11, 2002
- 53
I have a table name d tblAttribHistory. This table contains columns "attribid", "attribtype", "languageid", "attribname", "validfrom" and "orgid". The prmary key comprises of "attribid", "attribtype", "languageid" and "validfrom".
There is the following index on the table:
- nonclustered, unique, primary key located on PRIMARY(AttribID, Attribtype, LanguageID, ValidFrom)
There could be a lot of rows with all the columns same except for the "validfrom" column.
The requirement is to improve performance of this table.
Please inform me how i can improve performance of this table by using indexes/views.
There is the following index on the table:
- nonclustered, unique, primary key located on PRIMARY(AttribID, Attribtype, LanguageID, ValidFrom)
There could be a lot of rows with all the columns same except for the "validfrom" column.
The requirement is to improve performance of this table.
Please inform me how i can improve performance of this table by using indexes/views.