Hints to improve the performance of the update statement
- Check the corresponding table is having any triggers, if triggers are found then disable the triggers while updating.
- Check Is there any constraints for all the columns in the table, if so then make the constraints disable while updating the columns.
- Check is there any Clustered or Non Clustered Index for the table, if so then drop the indexes while updating and recreate the indexes once you completes the update.
I hope the above hints will helps you to improve the perfomance of an update statement.
1 comment:
Fine
Post a Comment