Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. CREATE TABLE [dbo].[MyTable](
  2. [RecordID] [varchar](50) NULL,
  3. [DocumentID] [nvarchar](100) NULL,
  4. [DocumentName] [varchar](100) NULL,
  5. [DocumentOwner] [varchar](50) NULL,
  6. [DocumentTemplate] [varchar](50) NULL,
  7. [DocumentData] [ntext] NULL,
  8. [DocumentDate] [char](10) NULL,
  9. [DocumentTime] [char](10) NULL,
  10. [DocumentSize] [int] NULL,
  11. [DocumentUpdateVersion] [int] NULL,
  12. [SecondaryStorageURI] [varchar](150) NULL,
  13. [PreviousExportUri] [varchar](150) NULL
  14. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement