Tables [dbo].[usp_conflict_chg]
Properties
PropertyValue
Row Count6
Created11:11:05 AM Monday, May 11, 2009
Last Modified11:11:05 AM Monday, May 11, 2009
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PXPKusp_conflict_chg: ididint4
No
last_mod_dtint4
Yes
last_mod_bybinary(16)16
Yes
Indexes usp_conflict_chg_x1: changeIndexes usp_conflict_chg_x5: change\conflict_change\conflict_cichangeint4
No
Indexes usp_conflict_chg_x5: change\conflict_change\conflict_ciIndexes usp_conflict_chg_x2: conflict_changeconflict_changeint4
Yes
Indexes usp_conflict_chg_x5: change\conflict_change\conflict_ciIndexes usp_conflict_chg_x4: conflict_ciconflict_cibinary(16)16
No
Indexes usp_conflict_chg_x0: conflictconflictint4
No
is_causeint4
No
Indexes usp_conflict_chg_x3: tenanttenantbinary(16)16
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PXPKusp_conflict_chg: idPXPKusp_conflict_chgid
Yes
usp_conflict_chg_x5change, conflict_change, conflict_ci
Yes
usp_conflict_chg_x0conflict
usp_conflict_chg_x1change
usp_conflict_chg_x2conflict_change
usp_conflict_chg_x3tenant
usp_conflict_chg_x4conflict_ci
Permissions
TypeActionOwning Principal
GrantDeleteservice_desk_admin_group
GrantInsertservice_desk_admin_group
GrantSelectservice_desk_admin_group
GrantUpdateservice_desk_admin_group
GrantSelectservice_desk_ro_group
Extended Properties
NameValue
CommentAdded r12.1
SQL Script
CREATE TABLE [dbo].[usp_conflict_chg]
(
[id] [int] NOT NULL,
[last_mod_dt] [int] NULL,
[last_mod_by] [binary] (16) NULL,
[change] [int] NOT NULL,
[conflict_change] [int] NULL,
[conflict_ci] [binary] (16) NOT NULL,
[conflict] [int] NOT NULL,
[is_cause] [int] NOT NULL,
[tenant] [binary] (16) NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usp_conflict_chg] ADD CONSTRAINT [PXPKusp_conflict_chg] PRIMARY KEY CLUSTERED ([id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_conflict_chg_x1] ON [dbo].[usp_conflict_chg] ([change]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [usp_conflict_chg_x5] ON [dbo].[usp_conflict_chg] ([change], [conflict_change], [conflict_ci]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_conflict_chg_x0] ON [dbo].[usp_conflict_chg] ([conflict]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_conflict_chg_x2] ON [dbo].[usp_conflict_chg] ([conflict_change]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_conflict_chg_x4] ON [dbo].[usp_conflict_chg] ([conflict_ci]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [usp_conflict_chg_x3] ON [dbo].[usp_conflict_chg] ([tenant]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[usp_conflict_chg] TO [service_desk_admin_group]
GRANT INSERT ON  [dbo].[usp_conflict_chg] TO [service_desk_admin_group]
GRANT DELETE ON  [dbo].[usp_conflict_chg] TO [service_desk_admin_group]
GRANT UPDATE ON  [dbo].[usp_conflict_chg] TO [service_desk_admin_group]
GRANT SELECT ON  [dbo].[usp_conflict_chg] TO [service_desk_ro_group]
GO
EXEC sp_addextendedproperty N'Comment', N'Added r12.1', 'SCHEMA', N'dbo', 'TABLE', N'usp_conflict_chg', NULL, NULL
GO
Uses