For arguments sake, lets say it's for SQL 2005/8. I understand that when you place indexes on a table to tune SELECT statements, these indexes need maintaining during INSERT / UPDATE / DELETE actions.
My main question is this:
When will SQL Server maintain a table's indexes?
I have many subsequent questions:
I naively assume that it will do so after a command has executed. Say you are inserting 20 rows, it will maintain the index after 20 rows have been inserted and committed.
What happens in the situation where a script features multiple statements against a table, but are otherwise distinct statements?
Does the server have the intelligence to maintain the index after all statements are executed or does it do it per statement?
I've seen situations where indexes are dropped and recreated after large / many INSERT / UPDATE actions.
This presumably incurs rebuilding the entire table's indexes even if you only change a handful of rows?
Would there be a performance benefit in attempting to collate
INSERTandUPDATEactions into a larger batch, say by collecting rows to insert in a temporary table, as opposed to doing many smaller inserts?- How would collating the rows above stack up against dropping an index versus taking the maintenance hit?
Sorry for the proliferation of questions - it's something I've always known to be mindful of, but when trying to tune a script to get a balance, I find I don't actually know when index maintenance occurs.
Edit: I understand that performance questions largely depend on the amount of data during the insert/update and the number of indexes. Again for arguments sake, I'd have two situations:
- An index heavy table tuned for selects.
- An index light table (PK).
Both situations would have a large insert/update batch, say, 10k+ rows.
Edit 2: I'm aware of being able to profile a given script on a data set. However, profiling doesn't tell me why a given approach is faster than another. I am more interested in the theory behind the indexes and where performance issues stem, not a definitive "this is faster than that" answer.
Thanks.