Tables [dbo].[investigation_person]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CS_AS
HeapYes
Row Count0
Created12:31:02 PM Sunday, December 05, 2010
Last Modified12:31:02 PM Sunday, December 05, 2010
Columns
NameData TypeMax Length (Bytes)Allow Nulls
investigation_namevarchar(32)32
Yes
person_idint4
Yes
SQL Script
CREATE TABLE [dbo].[investigation_person]
(
[investigation_name] [varchar] (32) COLLATE SQL_Latin1_General_CP1_CS_AS NULL,
[person_id] [int] NULL
) ON [PRIMARY]

GO
Uses