Skip to content

Instantly share code, notes, and snippets.

@amr-swalha
Created February 24, 2018 12:44
Show Gist options
  • Select an option

  • Save amr-swalha/59852ceb69e6744cff22b57faffe833b to your computer and use it in GitHub Desktop.

Select an option

Save amr-swalha/59852ceb69e6744cff22b57faffe833b to your computer and use it in GitHub Desktop.
The script to create the json.config table
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[JsonConfig](
[Id] [int] NOT NULL,
[Configuration] [nvarchar](max) NULL,
PRIMARY KEY CLUSTERED
(
[Id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment