Tables [dbo].[CollabResponses]
Properties
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
Row Count8
Created12:44:45 PM Thursday, October 04, 2007
Last Modified12:44:47 PM Thursday, October 04, 2007
Columns
NameData TypeMax Length (Bytes)Allow NullsIdentity
Cluster Primary Key pk_responses: responseIDresponseIDint4
No
1 - 1
responseNamenvarchar(128)256
Yes
responseTextntextmax
Yes
responseTitlenvarchar(128)256
Yes
responseTypeint4
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key pk_responses: responseIDpk_responsesresponseID
Yes
SQL Script
CREATE TABLE [dbo].[CollabResponses]
(
[responseID] [int] NOT NULL IDENTITY(1, 1),
[responseName] [nvarchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[responseText] [ntext] COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[responseTitle] [nvarchar] (128) COLLATE SQL_Latin1_General_CP1_CI_AS NULL,
[responseType] [int] NOT NULL
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
ALTER TABLE [dbo].[CollabResponses] ADD CONSTRAINT [pk_responses] PRIMARY KEY CLUSTERED ([responseID]) ON [PRIMARY]
GO
Uses
Used By