Tables [dbo].[ca_replication_history]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
HeapYes
Row Count0
Created11:07:05 AM Wednesday, March 07, 2007
Last Modified11:13:10 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes baseidx_ca_replication_history: primary_uuid\secondary_uuidIndexes ca_replication_history_idx1: table_name\primary_uuid\lng1primary_uuidbinary(16)16
Yes
Indexes baseidx_ca_replication_history: primary_uuid\secondary_uuidsecondary_uuidbinary(16)16
Yes
Indexes ca_replication_history_idx1: table_name\primary_uuid\lng1lng1int4
Yes
lng2int4
Yes
lng3int4
Yes
lng4int4
Yes
Indexes ca_replication_history_idx1: table_name\primary_uuid\lng1table_namenvarchar(255)510
Yes
actionint4
Yes
auto_rep_versiontimestamp8
Yes
Indexes Indexes
NameColumns
baseidx_ca_replication_historyprimary_uuid, secondary_uuid
ca_replication_history_idx1table_name, primary_uuid, lng1
Permissions
TypeActionOwning Principal
GrantDeleteca_itrm_group
GrantInsertca_itrm_group
GrantSelectca_itrm_group
GrantUpdateca_itrm_group
GrantSelectregadmin
GrantSelectupmuser_group
GrantSelectca_itrm_group_ams
SQL Script
CREATE TABLE [dbo].[ca_replication_history]
(
[primary_uuid] [binary] (16) NULL,
[secondary_uuid] [binary] (16) NULL,
[lng1] [int] NULL,
[lng2] [int] NULL,
[lng3] [int] NULL,
[lng4] [int] NULL,
[table_name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[action] [int] NULL,
[auto_rep_version] [timestamp] NULL
) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [baseidx_ca_replication_history] ON [dbo].[ca_replication_history] ([primary_uuid], [secondary_uuid]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [ca_replication_history_idx1] ON [dbo].[ca_replication_history] ([table_name], [primary_uuid], [lng1]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ca_replication_history] TO [ca_itrm_group]
GRANT INSERT ON  [dbo].[ca_replication_history] TO [ca_itrm_group]
GRANT DELETE ON  [dbo].[ca_replication_history] TO [ca_itrm_group]
GRANT UPDATE ON  [dbo].[ca_replication_history] TO [ca_itrm_group]
GRANT SELECT ON  [dbo].[ca_replication_history] TO [ca_itrm_group_ams]
GRANT SELECT ON  [dbo].[ca_replication_history] TO [regadmin]
GRANT SELECT ON  [dbo].[ca_replication_history] TO [upmuser_group]
GO
Uses
Used By