Tables [usmuser].[usm_mr_ievent_001005]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
HeapYes
Row Count12
Created1:00:58 PM Friday, June 13, 2008
Last Modified1:00:58 PM Friday, June 13, 2008
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes usm_mr_ievent_001005_idx1: bulk_id\time_stamp\account_no\service_codebulk_idint4
Yes
Indexes usm_mr_ievent_001005_idx3: account_no\service_code\time_stampIndexes usm_mr_ievent_001005_idx1: bulk_id\time_stamp\account_no\service_codeaccount_novarchar(50)50
Yes
Indexes usm_mr_ievent_001005_idx2: event_id\time_stampevent_idint4
Yes
Indexes usm_mr_ievent_001005_idx3: account_no\service_code\time_stampIndexes usm_mr_ievent_001005_idx1: bulk_id\time_stamp\account_no\service_codeservice_codeint4
Yes
Indexes usm_mr_ievent_001005_idx3: account_no\service_code\time_stampIndexes usm_mr_ievent_001005_idx1: bulk_id\time_stamp\account_no\service_codeIndexes usm_mr_ievent_001005_idx2: event_id\time_stamptime_stampdatetime8
Yes
valuefloat8
Yes
Indexes Indexes
NameColumns
usm_mr_ievent_001005_idx1bulk_id, time_stamp, account_no, service_code
usm_mr_ievent_001005_idx2event_id, time_stamp
usm_mr_ievent_001005_idx3account_no, service_code, time_stamp
SQL Script
CREATE TABLE [usmuser].[usm_mr_ievent_001005]
(
[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_001005_idx3] ON [usmuser].[usm_mr_ievent_001005] ([account_no], [service_code], [time_stamp]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usm_mr_ievent_001005_idx1] ON [usmuser].[usm_mr_ievent_001005] ([bulk_id], [time_stamp], [account_no], [service_code]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usm_mr_ievent_001005_idx2] ON [usmuser].[usm_mr_ievent_001005] ([event_id], [time_stamp]) ON [PRIMARY]
GO
Uses