Viewing 5 posts - 1 through 5 (of 5 total)
March 18, 2015 at 5:18 am
Table schema is as follows:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_PADDING ON
GO
CREATE TABLE [dbo].[TestTable](
[id] [bigint] IDENTITY(0,1) NOT NULL,
[sys_service_id] [bigint] NOT NULL,
[sys_msg_type] [int] NOT NULL,
[sys_proc_time] [datetime] NOT NULL,
[sys_proc_host] [varchar](45) NOT NULL,
[sys_asset_id] [varchar](45)...
March 18, 2015 at 3:10 am
clustered index is getting used as per the query plan.
March 18, 2015 at 3:04 am
Viewing 5 posts - 1 through 5 (of 5 total)