From 8d2826c3a693e0e546bf389ae1e29678366b51c0 Mon Sep 17 00:00:00 2001 From: southernsun Date: Mon, 29 Apr 2019 08:05:00 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 781853a..9a94fb7 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # SQLServerJSONBeautifier SQL Server JSON Beautifier \ Formatter \ Indenter CLR function -SQL Server 2016 has the new feature of creating JSON output using FOR JSON clause similar to FOR XML path.The output of the above clause will not be formatted in a readable format.It will be returned as a one single string. To format the JSON , an external application like Visula Studio or Internet Online Formatting tools to be used. The purpose of this function is to format the JSON to a readable format in the SSMS output itself. This function beautifies the JSON and provides the output. This is a CLR Function created using C#. +SQL Server 2016 has the new feature of creating JSON output using FOR JSON clause similar to FOR XML path.The output of the above clause will not be formatted in a readable format.It will be returned as a one single string. To format the JSON , an external application like Visual Studio or Internet Online Formatting tools to be used. The purpose of this function is to format the JSON to a readable format in the SSMS output itself. This function beautifies the JSON and provides the output. This is a CLR Function created using C#. ### How Deploy