posted 9/30/2011 4:14:43 PM by Quick Tip - Views: [1015]
In SQL Server 2008, lock escalation to Table object is default. You can make partition-level lock escalation as default as follows:
ALTER TABLE [Table_Name] SET (LOCK_ESCALATION = AUTO);
For more detailed explanation, see this: http://www.sqlservergeeks.com/articles/sql-server-bi/73/sql-server-2008-%E2%80%93-partition-level-locking
Regards
Quick Tip from SQLServerGeeks.com
Quick Tip (Member since: 9/30/2011 3:53:08 PM)
View Quick Tip 's profile
Leave a comment