EnVisageOnline/Main-RMO/Database/Scripts/20150807/01_Add_History_Index.sql

12 lines
394 B
Transact-SQL

USE [EnVisage]
GO
/****** Object: Index [IX_History_EntityId] Script Date: 08/07/2015 13:31:40 ******/
CREATE NONCLUSTERED INDEX [IX_History_EntityId] ON [dbo].[History]
(
[EntityId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
GO