Tables [dbo].[wsm_propogation_model_ext]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count0
Created11:08:02 AM Wednesday, March 07, 2007
Last Modified11:09:57 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKwsm_propogation_model_ext: propogation_model_uuid\attribnameForeign Keys r_1497: [dbo].[wsm_propogation_model].propogation_model_uuidIndexes xif1wsm_propogation_model_ext: propogation_model_uuidpropogation_model_uuidbinary(16)16
No
Cluster Primary Key XPKwsm_propogation_model_ext: propogation_model_uuid\attribnameattribnamevarchar(255)255
No
valuenvarchar(1024)2048
No
Foreign Keys r_1498: [dbo].[wsm_attribute_type].attribute_type_idIndexes xif2wsm_propogation_model_ext: attribute_type_idattribute_type_idint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKwsm_propogation_model_ext: propogation_model_uuid\attribnameXPKwsm_propogation_model_extpropogation_model_uuid, attribname
Yes
xif1wsm_propogation_model_extpropogation_model_uuid
xif2wsm_propogation_model_extattribute_type_id
Foreign Keys Foreign Keys
NameColumns
r_1497propogation_model_uuid->[dbo].[wsm_propogation_model].[propogation_model_uuid]
r_1498attribute_type_id->[dbo].[wsm_attribute_type].[attribute_type_id]
Permissions
TypeActionOwning Principal
GrantDeletewsm_admin_group
GrantInsertwsm_admin_group
GrantSelectwsm_admin_group
GrantUpdatewsm_admin_group
GrantSelectwsm_ro_group
SQL Script
CREATE TABLE [dbo].[wsm_propogation_model_ext]
(
[propogation_model_uuid] [binary] (16) NOT NULL,
[attribname] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[value] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[attribute_type_id] [int] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_propogation_model_ext] ADD CONSTRAINT [XPKwsm_propogation_model_ext] PRIMARY KEY CLUSTERED ([propogation_model_uuid], [attribname]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif2wsm_propogation_model_ext] ON [dbo].[wsm_propogation_model_ext] ([attribute_type_id]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [xif1wsm_propogation_model_ext] ON [dbo].[wsm_propogation_model_ext] ([propogation_model_uuid]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_propogation_model_ext] ADD CONSTRAINT [r_1497] FOREIGN KEY ([propogation_model_uuid]) REFERENCES [dbo].[wsm_propogation_model] ([propogation_model_uuid])
GO
ALTER TABLE [dbo].[wsm_propogation_model_ext] ADD CONSTRAINT [r_1498] FOREIGN KEY ([attribute_type_id]) REFERENCES [dbo].[wsm_attribute_type] ([attribute_type_id])
GO
GRANT SELECT ON  [dbo].[wsm_propogation_model_ext] TO [wsm_admin_group]
GRANT INSERT ON  [dbo].[wsm_propogation_model_ext] TO [wsm_admin_group]
GRANT DELETE ON  [dbo].[wsm_propogation_model_ext] TO [wsm_admin_group]
GRANT UPDATE ON  [dbo].[wsm_propogation_model_ext] TO [wsm_admin_group]
GRANT SELECT ON  [dbo].[wsm_propogation_model_ext] TO [wsm_ro_group]
GO
Uses