Tables [dbo].[al_link_form_attribute_profile]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count2086
Created12:30:40 PM Sunday, December 05, 2010
Last Modified10:34:38 PM Thursday, February 10, 2011
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key XPKlink_form_attribute_profile: form_attribute_id\profile_idForeign Keys AL_LINK_FORM_ATTRIB_PROF_FK01: [dbo].[al_form_attribute_def].form_attribute_idform_attribute_idint4
No
Cluster Primary Key XPKlink_form_attribute_profile: form_attribute_id\profile_idForeign Keys AL_LINK_FORM_ATTRIB_PROF_FK02: [dbo].[al_profile_def].profile_idprofile_idint4
No
is_readonlyint4
No
is_requiredint4
No
last_update_usernvarchar(255)510
Yes
last_update_dateint4
Yes
version_numberint4
Yes
('0')
Indexes Indexes
NameColumnsUnique
Cluster Primary Key XPKlink_form_attribute_profile: form_attribute_id\profile_idXPKlink_form_attribute_profileform_attribute_id, profile_id
Yes
Foreign Keys Foreign Keys
NameNo CheckColumns
AL_LINK_FORM_ATTRIB_PROF_FK01
Yes
form_attribute_id->[dbo].[al_form_attribute_def].[form_attribute_id]
AL_LINK_FORM_ATTRIB_PROF_FK02profile_id->[dbo].[al_profile_def].[profile_id]
Permissions
TypeActionOwning Principal
GrantDeleteswcmadmin
GrantInsertswcmadmin
GrantSelectswcmadmin
GrantUpdateswcmadmin
SQL Script
CREATE TABLE [dbo].[al_link_form_attribute_profile]
(
[form_attribute_id] [int] NOT NULL,
[profile_id] [int] NOT NULL,
[is_readonly] [int] NOT NULL,
[is_required] [int] NOT NULL,
[last_update_user] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[last_update_date] [int] NULL,
[version_number] [int] NULL CONSTRAINT [DF__al_link_f__versi__778D236C] DEFAULT ('0')
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[al_link_form_attribute_profile] ADD CONSTRAINT [XPKlink_form_attribute_profile] PRIMARY KEY CLUSTERED ([form_attribute_id], [profile_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[al_link_form_attribute_profile] WITH NOCHECK ADD CONSTRAINT [AL_LINK_FORM_ATTRIB_PROF_FK01] FOREIGN KEY ([form_attribute_id]) REFERENCES [dbo].[al_form_attribute_def] ([form_attribute_id])
GO
ALTER TABLE [dbo].[al_link_form_attribute_profile] ADD CONSTRAINT [AL_LINK_FORM_ATTRIB_PROF_FK02] FOREIGN KEY ([profile_id]) REFERENCES [dbo].[al_profile_def] ([profile_id])
GO
GRANT SELECT ON  [dbo].[al_link_form_attribute_profile] TO [swcmadmin]
GRANT INSERT ON  [dbo].[al_link_form_attribute_profile] TO [swcmadmin]
GRANT DELETE ON  [dbo].[al_link_form_attribute_profile] TO [swcmadmin]
GRANT UPDATE ON  [dbo].[al_link_form_attribute_profile] TO [swcmadmin]
GO
Uses
Used By