Skip to main content

Questions tagged [open-json]

OpenJson is a T-SQL (SQL Server) built in table valued function, introduced in 2016 version. Use this tag with questions related to this command.

open-json
0 votes
2 answers
62 views

Assistance with TSQL OPENJSON extracting metadata and data into table

I have this JSON: { "environments": [ { "environment": "Development", "customs": { "FieldA": "...
Measel's user avatar
  • 41
2 votes
0 answers
68 views

Entity Framework Core 8 Where IN vs Where IN OPENJSON Additional Question

I have reviewed the other post on this, and found my scenario to be much more un workable, to the extent that I am unsure if it is the way I am writing the query that is the issue. Surely it must be ...
Alex Holmes's user avatar
2 votes
1 answer
206 views

EF Core 8 - translate queries into embedded collections (OPENJSON) using expression

Here is an example of EF Core 8 translating LINQ to embedded collections: https://learn.microsoft.com/en-us/ef/core/what-is-new/ef-core-8.0/whatsnew#translate-queries-into-embedded-collections And it ...
Illia's user avatar
  • 23
-1 votes
1 answer
65 views

Using numeric field names in SQL JSON [duplicate]

I have the following code example: Insert into dbo.Data ( COL_0 select A_1 from OPENJSON (@jsonData) with ( A_1 nvarchar(max) '$.0' ) which triggers: ex {System....
Qiuzman's user avatar
  • 1,425
1 vote
2 answers
102 views

Parse nested JSON in SQL

I have this JSON: [{ "id": 1, "meta": [{ "key": "key1", "value": "ValueKey1" }, { "...
hoggar's user avatar
  • 3,779
0 votes
0 answers
34 views

Unable to Parse the Json file using Open Json in SQL

I've a JSON file content and I want read the content using Open JSON and load it into the SQL. need help in loading the content to SQl. { "Header": { "Time": "2023-...
Surya Vanamoju's user avatar
0 votes
0 answers
21 views

JSON string in MS SQL Server is too large to select without CAST ing to XML [duplicate]

We have event data in a log table that is a JSON string of NVARCHAR(MAX) datatype. Some of the strings are too large to SELECT out of the table. But, if we CAST it, we can see the entire value. SELECT ...
Michael's user avatar
  • 339
1 vote
1 answer
41 views

How to dynamically load SQL tables using OPENJSON

I have a json that looks like [{ "year": 2021, "state": "Nebraska", "report": "Farm Business Balance Sheet&...
new_programmer_22's user avatar
0 votes
1 answer
61 views

Get element with newest date

I'm trying to get the element with the newest date from various JSON arrays. But I can't get it to work. It returns all the elements from the arrays. I have tried several things with MAX, TOP(1), ...
OJ Slott's user avatar
0 votes
1 answer
24 views

Parse Data from OPENJSON()

Here is my string: SELECT * FROM OPENJSON ('{"data":{"CAD":1.3480102032}}') WITH ( Rate VARCHAR(200) '$.data') I need to extract the value 1.3480102032 Sorry, new to this! The ...
Russ's user avatar
  • 3
0 votes
1 answer
80 views

SELECT all fields from OPENJSON

SELECT all fields from OPENJSON I have Json data below. How can I select all available fields from OpenJson? I am using SQL Server 2016. DECLARE @JsonData varchar(max) SET @JsonData = '{"status&...
Overflow's user avatar
-2 votes
1 answer
58 views

How to read a value from a particular object in a list with JSON string using MS SQL [closed]

[{ "resourceType": "virtualMachines", "name": "Standard_E16-4as_v5", "tier": "Standard", "size": &...
ARUNKUMAR RAVI's user avatar
1 vote
1 answer
43 views

Using param in SQL stored procedure select value

I have a stored procedure that I am using to extract values from a JSON column in a table: @ReferenceID int, @BureausID int, @EmployersID int, @FileType varchar(12), @TargetIndex ...
AlliDeacon's user avatar
  • 1,467
0 votes
2 answers
361 views

How to get @odata.etag value from JSON in SQL Server table

Does anybody knows how to get @odata.etag value from a JSON into a SQL Server table? Many thanks! JSON string: { "@odata.context": "https://mycompany.com/Tenant/ODataV4/$metadata#...
Daniel de Jong's user avatar
2 votes
2 answers
81 views

JSON Object Query SQL Server

I have a JSON string which is the following: [ { "id": 103001058774, "name": "status", "label": "Status", "...
AshJam's user avatar
  • 35

15 30 50 per page
1
2 3 4 5
14