Advertisement
Guest User

Taccount

a guest
Feb 13th, 2017
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. CREATE TABLE [dbo].[TAccount](
  2. [Account_Id] [int] IDENTITY(1,1) NOT NULL,
  3. [Account_Name] [varchar](255) NULL,
  4. [Account_Address1] [varchar](8000) NULL
  5. CONSTRAINT [PK_TAccount] PRIMARY KEY CLUSTERED
  6. (
  7. [Account_Id] ASC
  8. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  9. ) ON [PRIMARY]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement