With SORT_IN_TEMPDB = ON 

This option can improve your Index to be more Performance but you must take care about this Size of the TempDB

— Create some indexes
CREATE UNIQUE CLUSTERED INDEX [Clustered_SalesOrderDetails]
ON [Sales].[SalesOrderDetail]
([SalesOrderDetailID] ASC)
WITH (SORT_IN_TEMPDB = ON)
GO

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.