Advertisement
Guest User

Untitled

a guest
Feb 20th, 2020
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.64 KB | None | 0 0
  1.  
  2. SET ANSI_NULLS ON
  3. GO
  4.  
  5. SET QUOTED_IDENTIFIER ON
  6. GO
  7.  
  8. CREATE TABLE [dbo].[UDFileInfo](
  9.     [Id] [uniqueidentifier] NOT NULL,
  10.     [SignatureHolderId] [uniqueidentifier] NULL,
  11.     [TrackingNo] [VARCHAR](17) NULL,
  12.     [Etag] [VARCHAR](255) NOT NULL,
  13.     [ObjectKey] [VARCHAR](100) NOT NULL,
  14.     [ObjectUrl] [VARCHAR](255) NOT NULL,
  15.     [EntryBy] [uniqueidentifier] NOT NULL,
  16.     [EntryDate] [datetime] NOT NULL,
  17.  CONSTRAINT [PK_UDFileInfo] PRIMARY KEY CLUSTERED
  18. (
  19.     [Id] ASC
  20. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
  21. ) ON [PRIMARY]
  22. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement