Advertisement
Guest User

Untitled

a guest
Nov 13th, 2012
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 1.55 KB | None | 0 0
  1. USE [_hMaiServer]
  2. GO
  3.  
  4. /****** Object:  Table [dbo].[hm_deliverylog]    Script Date: 13.11.2012 16:44:51 ******/
  5. SET ANSI_NULLS ON
  6. GO
  7.  
  8. SET QUOTED_IDENTIFIER ON
  9. GO
  10.  
  11. SET ANSI_PADDING ON
  12. GO
  13.  
  14. CREATE TABLE [dbo].[hm_deliverylog](
  15.     [deliveryid] [INT] IDENTITY(1,1) NOT NULL,
  16.     [deliveryfrom] [VARCHAR](255) NOT NULL,
  17.     [deliveryfilename] [VARCHAR](255) NOT NULL,
  18.     [deliverytime] [datetime] NOT NULL,
  19.     [deliverysubject] [nvarchar](255) NOT NULL,
  20.     [deliverybody] [nvarchar](MAX) NOT NULL,
  21.     [deliveryaccount] [VARCHAR](255) NULL,
  22.  CONSTRAINT [hm_deliverylog_pk] PRIMARY KEY NONCLUSTERED
  23. (
  24.     [deliveryid] ASC
  25. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  26. ) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
  27.  
  28. GO
  29.  
  30. SET ANSI_PADDING OFF
  31. GO
  32.  
  33.  
  34. /****** Object:  Index [hm_deliverylog_pk]    Script Date: 13.11.2012 16:57:22 ******/
  35. ALTER TABLE [dbo].[hm_deliverylog] ADD  CONSTRAINT [hm_deliverylog_pk] PRIMARY KEY NONCLUSTERED
  36. (
  37.     [deliveryid] ASC
  38. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  39. GO
  40.  
  41.  
  42.  
  43.  
  44. /****** Object:  Index [IX_hm_deliverylog]    Script Date: 13.11.2012 16:57:03 ******/
  45. CREATE NONCLUSTERED INDEX [IX_hm_deliverylog] ON [dbo].[hm_deliverylog]
  46. (
  47.     [deliverytime] ASC
  48. )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
  49. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement