Is good that create create index after data update

  • Hi All,

    I am having a table with 10 columns and more than ten million records.

    Now i have to add one column, update some rank value with that column and finally i have

    to create the non-clustered index for the same.

    My question here is, which is best (Performance wise).

    First fill the column with Rank function and create the index.

    or

    Create the index and fill the column with Rank function

    Thanks in advance.

    Regards,

    Ramesh.P

  • The performance of the first one is better than the second.

    The query efficiency will be improved largely by adding the appropriate index, but will slower data modification operation, because the index statistics must be maintained also.:-P

  • Thank you very much.

    I going to apply.

    Regards

    Ramesh.P

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply