Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
ShaneChapman
Starting Member
1 Post |
Posted - 2005-04-26 : 20:56:00
|
| CREATE TABLE [dbo].[taContactTypes] ( [ctRecID] [RecordId] NOT NULL , [ContactType] [varchar] (32) COLLATE Latin1_General_CI_AS NOT NULL , [IsActive] [bit] NULL CONSTRAINT [DF__taContact__IsAct__3E1D39E1] DEFAULT (1), [IsDeleted] [bit] NULL , [DisplayOrder] [int] NULL , [StatusFlags] [varchar] (32) COLLATE Latin1_General_CI_AS NULL , [CreateDate] [UserDate] NULL CONSTRAINT [DF__taContact__Creat__3F115E1A] DEFAULT (getdate()), [CreateUser] [UserName] NULL CONSTRAINT [DF__taContact__Creat__40058253] DEFAULT (0), [ModifDate] [UserDate] NULL , [ModifUser] [UserName] NULL , PRIMARY KEY CLUSTERED ( [ctRecID] ) WITH FILLFACTOR = 90 ON [PRIMARY] ) ON [PRIMARY]GO |
|
|
derrickleggett
Pointy Haired Yak DBA
4184 Posts |
|
|
|
|
|