3
Cómo mejorar la estimación de 1 fila en una Vista restringida por DateAdd () contra un índice
Uso de Microsoft SQL Server 2012 (SP3) (KB3072779) - 11.0.6020.0 (X64). Dada una tabla e í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) Las filas reales para cada una de …