Tables [dbo].[objectudp]
Properties
PropertyValue
HeapYes
Row Count0
Created12:31:08 PM Sunday, December 05, 2010
Last Modified12:31:08 PM Sunday, December 05, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Indexes baseidx_objectudp: objectid\udpidobjectidint4
No
Indexes baseidx_objectudp: objectid\udpidudpidint4
No
Indexes Indexes
NameColumnsUnique
baseidx_objectudpobjectid, udpid
Yes
SQL Script
CREATE TABLE [dbo].[objectudp]
(
[objectid] [int] NOT NULL,
[udpid] [int] NOT NULL
) ON [PRIMARY]

GO
CREATE UNIQUE NONCLUSTERED INDEX [baseidx_objectudp] ON [dbo].[objectudp] ([objectid], [udpid]) ON [PRIMARY]
GO
Uses