3
Como melhorar a estimativa de 1 linha em uma Visualização restrita por DateAdd () em relação a um índice
Usando o Microsoft SQL Server 2012 (SP3) (KB3072779) - 11.0.6020.0 (X64). Dada uma tabela e um índice: create table [User].[Session] ( SessionId int identity(1, 1) not null primary key CreatedUtc datetime2(7) not null default sysutcdatetime()) ) create nonclustered index [IX_User_Session_CreatedUtc] on [User].[Session]([CreatedUtc]) include (SessionId) As linhas reais para cada uma …