Tables [usmuser].[usm_mr_ievent_002203]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count4
Created5:48:31 PM Tuesday, December 15, 2009
Last Modified5:48:32 PM Tuesday, December 15, 2009
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes usm_mr_ievent_002203_idx1: bulk_id\time_stamp\account_no\service_codebulk_idint4
Yes
Indexes usm_mr_ievent_002203_idx3: account_no\service_code\time_stampIndexes usm_mr_ievent_002203_idx1: bulk_id\time_stamp\account_no\service_codeaccount_novarchar(50)50
Yes
Indexes usm_mr_ievent_002203_idx2: event_id\time_stampevent_idint4
Yes
Indexes usm_mr_ievent_002203_idx3: account_no\service_code\time_stampIndexes usm_mr_ievent_002203_idx1: bulk_id\time_stamp\account_no\service_codeservice_codeint4
Yes
Indexes usm_mr_ievent_002203_idx3: account_no\service_code\time_stampIndexes usm_mr_ievent_002203_idx1: bulk_id\time_stamp\account_no\service_codeIndexes usm_mr_ievent_002203_idx2: event_id\time_stamptime_stampdatetime8
Yes
valuefloat8
Yes
Indexes Indexes
NameColumns
usm_mr_ievent_002203_idx1bulk_id, time_stamp, account_no, service_code
usm_mr_ievent_002203_idx2event_id, time_stamp
usm_mr_ievent_002203_idx3account_no, service_code, time_stamp
SQL Script
CREATE TABLE [usmuser].[usm_mr_ievent_002203]
(
[bulk_id] [int] NULL,
[account_no] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[event_id] [int] NULL,
[service_code] [int] NULL,
[time_stamp] [datetime] NULL,
[value] [float] NULL
) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usm_mr_ievent_002203_idx3] ON [usmuser].[usm_mr_ievent_002203] ([account_no], [service_code], [time_stamp]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usm_mr_ievent_002203_idx1] ON [usmuser].[usm_mr_ievent_002203] ([bulk_id], [time_stamp], [account_no], [service_code]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usm_mr_ievent_002203_idx2] ON [usmuser].[usm_mr_ievent_002203] ([event_id], [time_stamp]) ON [PRIMARY]
GO
Uses