Hello,I have the following table:create table dbo.Errors( Id uniqueidentifier rowguidcol not null constraint DF_Errors_Id default (newid()), Application nvarchar(60) not null, Host nvarchar(50) not null, Type nvarchar(100) not null, Source nvarchar(60) not null, Message nvarchar(500) not null, [User] nvarchar(50) not null, StatusCode int not null, TimeUtc datetime not null, [Sequence] int identity (1, 1) not null, AllXml ntext not null, constraint PK_Errors primary key nonclustered)
And then the following:create nonclustered index IX_Errors_App_Time_Seq on dbo.Errors( Application asc, TimeUtc desc, [Sequence] desc) on [primary]go
What is this index? It creates an order rule for when many records are loaded?Is there a way to incorporate this on the table creation or should really being created apart?Thanks,Miguel