Tables [dbo].[usm_link_method_method]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count2
Created11:08:05 AM Wednesday, March 07, 2007
Last Modified1:17:01 PM Tuesday, March 30, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key XPKusm_link_method_method: method_id\method_parent_idForeign Keys $usm_l_r0000249b00000000: [dbo].[usm_method].method_idmethod_idvarchar(64)64
No
Cluster Primary Key XPKusm_link_method_method: method_id\method_parent_idForeign Keys $usm_l_r0000249100000000: [dbo].[usm_method].method_parent_idmethod_parent_idvarchar(64)64
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKusm_link_method_method: method_id\method_parent_idXPKusm_link_method_methodmethod_id, method_parent_id
Yes
Foreign Keys Foreign Keys
NameColumns
$usm_l_r0000249100000000method_parent_id->[dbo].[usm_method].[method_id]
$usm_l_r0000249b00000000method_id->[dbo].[usm_method].[method_id]
Permissions
TypeActionOwning Principal
GrantDeleteusmgroup
GrantInsertusmgroup
GrantSelectusmgroup
GrantUpdateusmgroup
SQL Script
CREATE TABLE [dbo].[usm_link_method_method]
(
[method_id] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[method_parent_id] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_method_method] ADD CONSTRAINT [XPKusm_link_method_method] PRIMARY KEY CLUSTERED ([method_id], [method_parent_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_method_method] ADD CONSTRAINT [$usm_l_r0000249100000000] FOREIGN KEY ([method_parent_id]) REFERENCES [dbo].[usm_method] ([method_id])
GO
ALTER TABLE [dbo].[usm_link_method_method] ADD CONSTRAINT [$usm_l_r0000249b00000000] FOREIGN KEY ([method_id]) REFERENCES [dbo].[usm_method] ([method_id])
GO
GRANT SELECT ON  [dbo].[usm_link_method_method] TO [usmgroup]
GRANT INSERT ON  [dbo].[usm_link_method_method] TO [usmgroup]
GRANT DELETE ON  [dbo].[usm_link_method_method] TO [usmgroup]
GRANT UPDATE ON  [dbo].[usm_link_method_method] TO [usmgroup]
GO
Uses