Tables [dbo].[usm_runtimecomp_parameter]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count19
Created11:08:07 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_runtimecomp_parameter: runtime_component_id\runtime_parameterForeign Keys $usm_r_r000029ff00000000: [dbo].[usm_runtime_component].runtime_component_idruntime_component_idvarchar(50)50
No
Cluster Primary Key XPKusm_runtimecomp_parameter: runtime_component_id\runtime_parameterruntime_parameternvarchar(256)512
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKusm_runtimecomp_parameter: runtime_component_id\runtime_parameterXPKusm_runtimecomp_parameterruntime_component_id, runtime_parameter
Yes
Foreign Keys Foreign Keys
NameUpdateDeleteColumns
$usm_r_r000029ff00000000CascadeCascaderuntime_component_id->[dbo].[usm_runtime_component].[runtime_component_id]
Permissions
TypeActionOwning Principal
GrantDeleteusmgroup
GrantInsertusmgroup
GrantSelectusmgroup
GrantUpdateusmgroup
SQL Script
CREATE TABLE [dbo].[usm_runtimecomp_parameter]
(
[runtime_component_id] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[runtime_parameter] [nvarchar] (256) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_runtimecomp_parameter] ADD CONSTRAINT [XPKusm_runtimecomp_parameter] PRIMARY KEY CLUSTERED ([runtime_component_id], [runtime_parameter]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_runtimecomp_parameter] ADD CONSTRAINT [$usm_r_r000029ff00000000] FOREIGN KEY ([runtime_component_id]) REFERENCES [dbo].[usm_runtime_component] ([runtime_component_id]) ON DELETE CASCADE ON UPDATE CASCADE
GO
GRANT SELECT ON  [dbo].[usm_runtimecomp_parameter] TO [usmgroup]
GRANT INSERT ON  [dbo].[usm_runtimecomp_parameter] TO [usmgroup]
GRANT DELETE ON  [dbo].[usm_runtimecomp_parameter] TO [usmgroup]
GRANT UPDATE ON  [dbo].[usm_runtimecomp_parameter] TO [usmgroup]
GO
Uses