Tables [dbo].[usm_link_profile_hosts]
Properties
PropertyValue
Row Count0
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_profile_hosts: collection_profile_id\target_host_idForeign Keys $usm_l_r000024ff00000000: [dbo].[usm_collection_profile].collection_profile_idcollection_profile_idint4
No
Cluster Primary Key XPKusm_link_profile_hosts: collection_profile_id\target_host_idForeign Keys $usm_l_r000024f500000000: [dbo].[usm_host].target_host_idtarget_host_idint4
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKusm_link_profile_hosts: collection_profile_id\target_host_idXPKusm_link_profile_hostscollection_profile_id, target_host_id
Yes
Foreign Keys Foreign Keys
NameColumns
$usm_l_r000024f500000000target_host_id->[dbo].[usm_host].[host_id]
$usm_l_r000024ff00000000collection_profile_id->[dbo].[usm_collection_profile].[collection_profile_id]
Permissions
TypeActionOwning Principal
GrantDeleteusmgroup
GrantInsertusmgroup
GrantSelectusmgroup
GrantUpdateusmgroup
SQL Script
CREATE TABLE [dbo].[usm_link_profile_hosts]
(
[collection_profile_id] [int] NOT NULL,
[target_host_id] [int] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_profile_hosts] ADD CONSTRAINT [XPKusm_link_profile_hosts] PRIMARY KEY CLUSTERED ([collection_profile_id], [target_host_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_profile_hosts] ADD CONSTRAINT [$usm_l_r000024f500000000] FOREIGN KEY ([target_host_id]) REFERENCES [dbo].[usm_host] ([host_id])
GO
ALTER TABLE [dbo].[usm_link_profile_hosts] ADD CONSTRAINT [$usm_l_r000024ff00000000] FOREIGN KEY ([collection_profile_id]) REFERENCES [dbo].[usm_collection_profile] ([collection_profile_id])
GO
GRANT SELECT ON  [dbo].[usm_link_profile_hosts] TO [usmgroup]
GRANT INSERT ON  [dbo].[usm_link_profile_hosts] TO [usmgroup]
GRANT DELETE ON  [dbo].[usm_link_profile_hosts] TO [usmgroup]
GRANT UPDATE ON  [dbo].[usm_link_profile_hosts] TO [usmgroup]
GO
Uses