Tables [dbo].[usm_link_sysinstall_installcom]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count16
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_sysinstall_installcom: installed_component_id\system_install_idForeign Keys $usm_l_r0000261700000000: [dbo].[usm_installed_component].installed_component_idinstalled_component_idvarchar(50)50
No
Cluster Primary Key XPKusm_link_sysinstall_installcom: installed_component_id\system_install_idForeign Keys $usm_l_r0000260d00000000: [dbo].[usm_system_install].system_install_idsystem_install_idvarchar(64)64
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKusm_link_sysinstall_installcom: installed_component_id\system_install_idXPKusm_link_sysinstall_installcominstalled_component_id, system_install_id
Yes
Foreign Keys Foreign Keys
NameColumns
$usm_l_r0000260d00000000system_install_id->[dbo].[usm_system_install].[system_install_id]
$usm_l_r0000261700000000installed_component_id->[dbo].[usm_installed_component].[installed_component_id]
Permissions
TypeActionOwning Principal
GrantDeleteusmgroup
GrantInsertusmgroup
GrantSelectusmgroup
GrantUpdateusmgroup
SQL Script
CREATE TABLE [dbo].[usm_link_sysinstall_installcom]
(
[installed_component_id] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[system_install_id] [varchar] (64) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_sysinstall_installcom] ADD CONSTRAINT [XPKusm_link_sysinstall_installcom] PRIMARY KEY CLUSTERED ([installed_component_id], [system_install_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_sysinstall_installcom] ADD CONSTRAINT [$usm_l_r0000260d00000000] FOREIGN KEY ([system_install_id]) REFERENCES [dbo].[usm_system_install] ([system_install_id])
GO
ALTER TABLE [dbo].[usm_link_sysinstall_installcom] ADD CONSTRAINT [$usm_l_r0000261700000000] FOREIGN KEY ([installed_component_id]) REFERENCES [dbo].[usm_installed_component] ([installed_component_id])
GO
GRANT SELECT ON  [dbo].[usm_link_sysinstall_installcom] TO [usmgroup]
GRANT INSERT ON  [dbo].[usm_link_sysinstall_installcom] TO [usmgroup]
GRANT DELETE ON  [dbo].[usm_link_sysinstall_installcom] TO [usmgroup]
GRANT UPDATE ON  [dbo].[usm_link_sysinstall_installcom] TO [usmgroup]
GO
Uses