SQL Server Bulk Updates and Locking
When doing a large update of a table in a SQL Server database you may gain some performance by locking at the Table level instead of allowing SQL Server to do Page or Row level locking. This can be accomplished using Table Hints. Table hints override the query optimizer default plan for the executed query. …