Tables [dbo].[al_link_attribute_config]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count71
Created10:33:04 PM Thursday, February 10, 2011
Last Modified10:34:18 PM Thursday, February 10, 2011
Columns
NameData TypeMax Length (Bytes)Allow NullsDefault
Cluster Primary Key xpkal_link_attribute_config: class_name\attribute_name\config_idForeign Keys al_link_attribute_config_fk01: [dbo].[arg_attribute_def].class_name\attribute_nameclass_namenvarchar(255)510
No
Cluster Primary Key xpkal_link_attribute_config: class_name\attribute_name\config_idForeign Keys al_link_attribute_config_fk01: [dbo].[arg_attribute_def].class_name\attribute_nameattribute_namenvarchar(255)510
No
Cluster Primary Key xpkal_link_attribute_config: class_name\attribute_name\config_idForeign Keys al_link_attribute_config_fk02: [dbo].[al_configuration_def].config_idconfig_idint4
No
requiredint4
Yes
('0      ')
labelnvarchar(255)510
Yes
creation_usernvarchar(255)510
Yes
creation_dateint4
Yes
last_update_usernvarchar(255)510
Yes
last_update_dateint4
Yes
version_numberint4
Yes
('0')
Indexes Indexes
NameColumnsUnique
Cluster Primary Key xpkal_link_attribute_config: class_name\attribute_name\config_idxpkal_link_attribute_configclass_name, attribute_name, config_id
Yes
Foreign Keys Foreign Keys
NameColumns
al_link_attribute_config_fk01class_name->[dbo].[arg_attribute_def].[class_name]
attribute_name->[dbo].[arg_attribute_def].[attribute_name]
al_link_attribute_config_fk02config_id->[dbo].[al_configuration_def].[id]
SQL Script
CREATE TABLE [dbo].[al_link_attribute_config]
(
[class_name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[attribute_name] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[config_id] [int] NOT NULL,
[required] [int] NULL CONSTRAINT [DF__AL_LINK_A__REQUI__58671BC9] DEFAULT ('0      '),
[label] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[creation_user] [nvarchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[creation_date] [int] 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_LAC_VERSION] DEFAULT ('0')
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[al_link_attribute_config] ADD CONSTRAINT [xpkal_link_attribute_config] PRIMARY KEY CLUSTERED ([class_name], [attribute_name], [config_id]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[al_link_attribute_config] ADD CONSTRAINT [al_link_attribute_config_fk01] FOREIGN KEY ([class_name], [attribute_name]) REFERENCES [dbo].[arg_attribute_def] ([class_name], [attribute_name])
GO
ALTER TABLE [dbo].[al_link_attribute_config] ADD CONSTRAINT [al_link_attribute_config_fk02] FOREIGN KEY ([config_id]) REFERENCES [dbo].[al_configuration_def] ([id])
GO
Uses
Used By