I have a table with 2.5 mil records and one field is a varchar 50 which I have an index on. Although, I need to run a query to append some text on the values in this field.
But this takes over an hour to run. Is this normal?
Just to add to what George and Denis stated. Seeing that you are working with 2.5 mil records, make sure you have enough space to hold a copy of that data for re-creating the index if it's a clustered index. SQL Serevr will create a copy of the table then sort it then the original table dropped.
Probably not. Clustered indexes have better performance than non-clustered indexes. Also, you can only have 1 clustered index per table. Therefore, it makes the most sense to have the clustered index on the column(s) that improve overall performance the most. Usually, clustered indexes are put on the primary key column(s) of a table.
-George
"the screen with the little boxes in the window." - Moron
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.