Tables [dbo].[usm_link_rtapp_account]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
Row Count0
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_link_rtapp_account: account_id\runtime_application_idForeign Keys $usm_l_r0000251d00000000: [dbo].[usm_account].account_idaccount_idvarchar(50)50
No
Cluster Primary Key XPKusm_link_rtapp_account: account_id\runtime_application_idForeign Keys $usm_l_r0000252700000000: [dbo].[usm_runtime_application].runtime_application_idruntime_application_idvarchar(50)50
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKusm_link_rtapp_account: account_id\runtime_application_idXPKusm_link_rtapp_accountaccount_id, runtime_application_id
Yes
Foreign Keys Foreign Keys
NameColumns
$usm_l_r0000251d00000000account_id->[dbo].[usm_account].[account_id]
$usm_l_r0000252700000000runtime_application_id->[dbo].[usm_runtime_application].[runtime_application_id]
Permissions
TypeActionOwning Principal
GrantDeleteusmgroup
GrantInsertusmgroup
GrantSelectusmgroup
GrantUpdateusmgroup
SQL Script
CREATE TABLE [dbo].[usm_link_rtapp_account]
(
[account_id] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL,
[runtime_application_id] [varchar] (50) COLLATE SQL_Latin1_General_CP1_CS_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_rtapp_account] ADD CONSTRAINT [XPKusm_link_rtapp_account] PRIMARY KEY CLUSTERED ([account_id], [runtime_application_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[usm_link_rtapp_account] ADD CONSTRAINT [$usm_l_r0000251d00000000] FOREIGN KEY ([account_id]) REFERENCES [dbo].[usm_account] ([account_id])
GO
ALTER TABLE [dbo].[usm_link_rtapp_account] ADD CONSTRAINT [$usm_l_r0000252700000000] FOREIGN KEY ([runtime_application_id]) REFERENCES [dbo].[usm_runtime_application] ([runtime_application_id])
GO
GRANT SELECT ON  [dbo].[usm_link_rtapp_account] TO [usmgroup]
GRANT INSERT ON  [dbo].[usm_link_rtapp_account] TO [usmgroup]
GRANT DELETE ON  [dbo].[usm_link_rtapp_account] TO [usmgroup]
GRANT UPDATE ON  [dbo].[usm_link_rtapp_account] TO [usmgroup]
GO
Uses