Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. USE [DuraSupreme]
  2. GO
  3. SET IDENTITY_INSERT [dbo].[Prompts] ON
  4.  
  5. GO
  6. INSERT [dbo].[Prompts] ([Id], [Text], [Deleted]) VALUES (1, N'Prompt1', 0)
  7. GO
  8. SET IDENTITY_INSERT [dbo].[Prompts] OFF
  9. GO
  10. SET IDENTITY_INSERT [dbo].[Remarks] ON
  11.  
  12. GO
  13. INSERT [dbo].[Remarks] ([Id], [Text], [Key], [Value], [Deleted]) VALUES (1, N'Remark1', N'1', N'2', 0)
  14. GO
  15. INSERT [dbo].[Remarks] ([Id], [Text], [Key], [Value], [Deleted]) VALUES (2, N'Remark2', N'1', N'3', 0)
  16. GO
  17. INSERT [dbo].[Remarks] ([Id], [Text], [Key], [Value], [Deleted]) VALUES (3, N'Remark3', N'1', N'4', 0)
  18. GO
  19. INSERT [dbo].[Remarks] ([Id], [Text], [Key], [Value], [Deleted]) VALUES (4, N'Remar4', N'1', N'5', 0)
  20. GO
  21. SET IDENTITY_INSERT [dbo].[Remarks] OFF
  22. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement