Tables [dbo].[templateudpvalues]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
HeapYes
Row Count0
Created11:07:33 AM Wednesday, March 07, 2007
Last Modified11:09:45 AM Wednesday, March 07, 2007
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes baseidx_templateudpvalues: templateid\udpid\objectid\instanceidtemplateidint4
No
Indexes baseidx_templateudpvalues: templateid\udpid\objectid\instanceidudpidint4
No
Indexes baseidx_templateudpvalues: templateid\udpid\objectid\instanceidobjectidint4
No
Indexes baseidx_templateudpvalues: templateid\udpid\objectid\instanceidinstanceidint4
No
strvaluevarchar(1)1
Yes
textvaluevarchar(1)1
Yes
intvaluevarchar(1)1
Yes
Indexes Indexes
NameColumnsUnique
baseidx_templateudpvaluestemplateid, udpid, objectid, instanceid
Yes
SQL Script
CREATE TABLE [dbo].[templateudpvalues]
(
[templateid] [int] NOT NULL,
[udpid] [int] NOT NULL,
[objectid] [int] NOT NULL,
[instanceid] [int] NOT NULL,
[strvalue] [varchar] (1) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[textvalue] [varchar] (1) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[intvalue] [varchar] (1) COLLATE SQL_Latin1_General_CP1_CS_AS NULL
) ON [PRIMARY]
GO
CREATE UNIQUE NONCLUSTERED INDEX [baseidx_templateudpvalues] ON [dbo].[templateudpvalues] ([templateid], [udpid], [objectid], [instanceid]) ON [PRIMARY]
GO
Uses