Tables [dbo].[ca_synchronization_status]
Properties
PropertyValue
Row Count0
Created4:45:30 PM Wednesday, November 14, 2007
Last Modified2:45:52 PM Saturday, July 19, 2008
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKca_synchronization_status: domain_uuid\synchronization_conf_uuidsynchronization_conf_uuidbinary(16)16
No
Cluster Primary Key XPKca_synchronization_status: domain_uuid\synchronization_conf_uuiddomain_uuidbinary(16)16
No
modified_statusbinary(8)8
Yes
deleted_statusbinary(8)8
Yes
extlstatint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKca_synchronization_status: domain_uuid\synchronization_conf_uuidXPKca_synchronization_statusdomain_uuid, synchronization_conf_uuid
Yes
Permissions
TypeActionOwning Principal
GrantDeleteca_itrm_group
GrantInsertca_itrm_group
GrantSelectca_itrm_group
GrantUpdateca_itrm_group
GrantSelectca_itrm_group_ams
GrantSelectams_group
SQL Script
CREATE TABLE [dbo].[ca_synchronization_status]
(
[synchronization_conf_uuid] [binary] (16) NOT NULL,
[domain_uuid] [binary] (16) NOT NULL,
[modified_status] [binary] (8) NULL,
[deleted_status] [binary] (8) NULL,
[extlstat] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[ca_synchronization_status] ADD CONSTRAINT [XPKca_synchronization_status] PRIMARY KEY CLUSTERED ([domain_uuid], [synchronization_conf_uuid]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[ca_synchronization_status] TO [ams_group]
GRANT SELECT ON  [dbo].[ca_synchronization_status] TO [ca_itrm_group]
GRANT INSERT ON  [dbo].[ca_synchronization_status] TO [ca_itrm_group]
GRANT DELETE ON  [dbo].[ca_synchronization_status] TO [ca_itrm_group]
GRANT UPDATE ON  [dbo].[ca_synchronization_status] TO [ca_itrm_group]
GRANT SELECT ON  [dbo].[ca_synchronization_status] TO [ca_itrm_group_ams]
GO
Uses