i know this has been discussed already like anything but could not find a reliable answer i can go with.
Suppose i have a table with 10 billion records and need to delete records with identity column in where clause. which option should i go with?
option 1: disable the index which will save overhead to rearrange the index after deletion but will take longer time to search which row needs to deleted.
option 2: will not do anything with index which will locate the row very fast but rearrange the index can take some time.
i am more inclined towards the 2 option but want to see what will experts say? :)