About 50 results
Open links in new tab
  1. sql server - What's best SQL datatype for storing JSON string? - Stack ...

    Feb 9, 2012 · Update #2: in the final product, Microsoft did not include a separate JSON datatype - instead, there are a number of JSON-functions (to package up database rows into JSON, or to parse …

  2. JSON data type cannot be used in OpenJson function

    May 20, 2025 · 1 I've been working on a solution in Azure SQL using the native JSON data type for the last month. Everything has been going well, but I've just run one of the functions that has been …

  3. sql server - What data type should be correct to store JSON content as ...

    Aug 17, 2012 · I plan to use JSON.NET to serialize and deserialize objects to and with the json string store it in the database. What datatype of the SQL Server 2008 should be the best to store it? …

  4. How to build new JSON with JSON_VALUE in SQL Server? Can't set …

    Sep 1, 2023 · SQL Server and Azure have limited JSON capabilities. If you do not know the actual data types of the referenced JSON properties, you need to call OPENJSON() with default schema and …

  5. SQL JSON - How to modify boolean value present in the Json Data

    Jul 21, 2017 · How can I modify the existing boolean value of a json data in SQL Server 2016 - Json? Below is the script for inserting json Data.

  6. Passing JSON type as parameter to SQL Server 2016 stored procedure ...

    Dec 27, 2016 · AFIAK, Sql server 2016 does not have a JSON data type, so you just pass your json to the stored procedure as a varchar. Inside the stored procedure you can use the built in functions that …

  7. sql - Storing JSON in database column - Stack Overflow

    Jul 21, 2020 · I'm trying to figure out what data type to use for the best performance. I've read this: SQL Server 2008 FILESTREAM performance And currently, JSON documents came as files ranging from …

  8. SQL Server complains about invalid json - Stack Overflow

    CROSS APPLY OPENJSON(data.value) moredata WHERE data.type = 5 The problem is isolated to "DataFactoryPipelineActivityOutput". The data factory builds the json string to be inserted into the …

  9. How to map JSON object from SQL Server query to a C# class model …

    May 17, 2024 · Currently using SQL Server with Dapper and not Entity Framework Core From other posts, I can see that there are examples of how to map individual properties in the JSON to a field, …

  10. java - com.microsoft.sqlserver.jdbc.SQLServerException: Column ...

    Apr 19, 2021 · Wanted to create JSON field using Spring boot entity class in SQL Server. Below is the column name @Column (name = "personalDetails", columnDefinition = "json") @JsonRawValue Str...