Tables [dbo].[wsm_configuration_object]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count0
Created11:08:08 AM Wednesday, March 07, 2007
Last Modified11:10:00 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Foreign Keys r_1471: [dbo].[wsm_configuration_profile].config_profile_uuidIndexes xwsm_configuration_object: config_object_id\config_profile_uuidIndexes xif1wsm_configuration_object: config_profile_uuidconfig_profile_uuidbinary(16)16
No
Cluster Primary Key XPKwsm_configuration_object: config_object_idIndexes xwsm_configuration_object: config_object_id\config_profile_uuidconfig_object_idint4
No
namenvarchar(255)510
No
templateobjectnamenvarchar(255)510
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKwsm_configuration_object: config_object_idXPKwsm_configuration_objectconfig_object_id
Yes
xwsm_configuration_objectconfig_object_id, config_profile_uuid
Yes
xif1wsm_configuration_objectconfig_profile_uuid
Foreign Keys Foreign Keys
NameColumns
r_1471config_profile_uuid->[dbo].[wsm_configuration_profile].[config_profile_uuid]
Permissions
TypeActionOwning Principal
GrantDeletewsm_admin_group
GrantInsertwsm_admin_group
GrantSelectwsm_admin_group
GrantUpdatewsm_admin_group
GrantSelectwsm_ro_group
SQL Script
CREATE TABLE [dbo].[wsm_configuration_object]
(
[config_profile_uuid] [binary] (16) NOT NULL,
[config_object_id] [int] NOT NULL,
[name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[templateobjectname] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_configuration_object] ADD CONSTRAINT [XPKwsm_configuration_object] PRIMARY KEY CLUSTERED ([config_object_id]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [xwsm_configuration_object] ON [dbo].[wsm_configuration_object] ([config_object_id], [config_profile_uuid]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif1wsm_configuration_object] ON [dbo].[wsm_configuration_object] ([config_profile_uuid]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_configuration_object] ADD CONSTRAINT [r_1471] FOREIGN KEY ([config_profile_uuid]) REFERENCES [dbo].[wsm_configuration_profile] ([config_profile_uuid])
GO
GRANT SELECT ON  [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT INSERT ON  [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT DELETE ON  [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT UPDATE ON  [dbo].[wsm_configuration_object] TO [wsm_admin_group]
GRANT SELECT ON  [dbo].[wsm_configuration_object] TO [wsm_ro_group]
GO
Uses
Used By