Tables [dbo].[wsm_model_method_template]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count0
Created11:07:46 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_model_method_template: model_method_uuidmodel_method_uuidbinary(16)16
No
Indexes xwsm_modelmethodtemplate_name: namenamenvarchar(255)510
No
method_templateimagemax
No
descriptionnvarchar(1024)2048
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKwsm_model_method_template: model_method_uuidXPKwsm_model_method_templatemodel_method_uuid
Yes
xwsm_modelmethodtemplate_namename
Yes
Permissions
TypeActionOwning Principal
GrantDeletewsm_admin_group
GrantInsertwsm_admin_group
GrantSelectwsm_admin_group
GrantUpdatewsm_admin_group
GrantSelectwsm_ro_group
SQL Script
CREATE TABLE [dbo].[wsm_model_method_template]
(
[model_method_uuid] [binary] (16) NOT NULL,
[name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[method_template] [image] NOT NULL,
[description] [nvarchar] (1024) COLLATE SQL_Latin1_General_CP1_CS_AS NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[wsm_model_method_template] ADD CONSTRAINT [XPKwsm_model_method_template] PRIMARY KEY CLUSTERED ([model_method_uuid]) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [xwsm_modelmethodtemplate_name] ON [dbo].[wsm_model_method_template] ([name]) ON [PRIMARY]
GO
GRANT SELECT ON  [dbo].[wsm_model_method_template] TO [wsm_admin_group]
GRANT INSERT ON  [dbo].[wsm_model_method_template] TO [wsm_admin_group]
GRANT DELETE ON  [dbo].[wsm_model_method_template] TO [wsm_admin_group]
GRANT UPDATE ON  [dbo].[wsm_model_method_template] TO [wsm_admin_group]
GRANT SELECT ON  [dbo].[wsm_model_method_template] TO [wsm_ro_group]
GO
Uses
Used By