Tables [dbo].[SystemProperties]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count342
Created12:44:46 PM Thursday, October 04, 2007
Last Modified12:44:46 PM Thursday, October 04, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key pk_sysprops: divisionID\propertyKeydivisionIDint4
No
Cluster Primary Key pk_sysprops: divisionID\propertyKeypropertyKeynvarchar(300)600
No
propertyValuentextmax
Yes
propertyDescriptionntextmax
Yes
isGlobalint4
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key pk_sysprops: divisionID\propertyKeypk_syspropsdivisionID, propertyKey
Yes
SQL Script
CREATE TABLE [dbo].[SystemProperties]
(
[divisionID] [int] NOT NULL,
[propertyKey] [nvarchar] (300) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[propertyValue] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[propertyDescription] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[isGlobal] [int] NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[SystemProperties] ADD CONSTRAINT [pk_sysprops] PRIMARY KEY CLUSTERED ([divisionID], [propertyKey]) ON [PRIMARY]
GO
Uses