Tables [dbo].[wsm_configuration_profile]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count0
Created11:08:06 AM Wednesday, March 07, 2007
Last Modified11:10:02 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKwsm_configuration_profile: config_profile_uuidconfig_profile_uuidbinary(16)16
No
namenvarchar(255)510
No
descriptionnvarchar(1024)2048
Yes
created_dateint4
Yes
creation_usernvarchar(64)128
No
last_update_usernvarchar(64)128
Yes
last_update_dateint4
Yes
configuration_typenvarchar(32)64
No
Foreign Keys r_1475: [dbo].[wsm_configprofile_type].config_type_idIndexes xif1wsm_configuration_profile: config_type_idconfig_type_idint4
No
Foreign Keys r_1476: [dbo].[wsm_template].templateuuidIndexes xif2wsm_configuration_profile: templateuuidtemplateuuidbinary(16)16
No
versionint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKwsm_configuration_profile: config_profile_uuidXPKwsm_configuration_profileconfig_profile_uuid
Yes
xif1wsm_configuration_profileconfig_type_id
xif2wsm_configuration_profiletemplateuuid
Foreign Keys Foreign Keys
NameColumns
r_1475config_type_id->[dbo].[wsm_configprofile_type].[config_type_id]
r_1476templateuuid->[dbo].[wsm_template].[templateuuid]
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_profile]
(
[config_profile_uuid] [binary] (16) NOT NULL,
[name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[description] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[created_date] [int] NULL,
[creation_user] [nvarchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[last_update_user] [nvarchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[last_update_date] [int] NULL,
[configuration_type] [nvarchar] (32) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[config_type_id] [int] NOT NULL,
[templateuuid] [binary] (16) NOT NULL,
[version] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_configuration_profile] ADD CONSTRAINT [XPKwsm_configuration_profile] PRIMARY KEY CLUSTERED ([config_profile_uuid]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif1wsm_configuration_profile] ON [dbo].[wsm_configuration_profile] ([config_type_id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif2wsm_configuration_profile] ON [dbo].[wsm_configuration_profile] ([templateuuid]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_configuration_profile] ADD CONSTRAINT [r_1475] FOREIGN KEY ([config_type_id]) REFERENCES [dbo].[wsm_configprofile_type] ([config_type_id])
GO
ALTER TABLE [dbo].[wsm_configuration_profile] ADD CONSTRAINT [r_1476] FOREIGN KEY ([templateuuid]) REFERENCES [dbo].[wsm_template] ([templateuuid])
GO
GRANT SELECT ON  [dbo].[wsm_configuration_profile] TO [wsm_admin_group]
GRANT INSERT ON  [dbo].[wsm_configuration_profile] TO [wsm_admin_group]
GRANT DELETE ON  [dbo].[wsm_configuration_profile] TO [wsm_admin_group]
GRANT UPDATE ON  [dbo].[wsm_configuration_profile] TO [wsm_admin_group]
GRANT SELECT ON  [dbo].[wsm_configuration_profile] TO [wsm_ro_group]
GO
Uses
Used By