PASS Virtualization Virtual Chapter Open Q&A – 1/13
Next Wednesday, January 13th, at 1pm Eastern the PASSVirtualization Virtual Chapter will be holding an open questions and answers session on...
2016-01-05
440 reads
Next Wednesday, January 13th, at 1pm Eastern the PASSVirtualization Virtual Chapter will be holding an open questions and answers session on...
2016-01-05
440 reads
Poor storage performance continues to be the largest pain point with enterprise Database Administrators in today’s virtual world. However, it...
2015-12-17
1,077 reads
In the West, the holiday season summons different memories and plans for different people. The thought of gorging on a...
2015-12-25 (first published: 2015-12-15)
1,019 reads
Want to get out of the winter blues and into some warmer weather for some deep SQL Server training? Join...
2015-12-07
687 reads
On Tuesday, December 15th, Bala Narasimhan and I are presenting a webinar where we will walk through real-world examples that...
2015-12-02
449 reads
Today I had a need to manually trigger and sustain a Blue Screen of Death (BSOD) inside a Windows Server...
2015-11-30
833 reads
Earlier this week I received a great question from a friend, and read something like this.
Hi David,I usually recommend people...
2015-11-11
402 reads
Last week’s PASS Summit conference in Seattle, WA was incredible (as always). It’s my favorite tech event of the year,...
2015-11-09
455 reads
I recently recorded an interview with PernixData where he discusses some of the largest challenges with virtualized databases, and talks about...
2015-10-30 (first published: 2015-10-21)
982 reads
Join PernixData and me tomorrow at 1PM Pacific for a webinar discussing an exciting technology from PernixData!
In-memory computing is gaining...
2015-10-19
306 reads
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
By HeyMo0sh
Working in DevOps long enough teaches you two universal truths: That’s exactly why I...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
Comments posted to this topic are about the item Answering Questions On Dropped Columns
I have some data in a table:
CREATE TABLE #test_data
(
id INT PRIMARY KEY,
name VARCHAR(100),
birth_date DATE
);
-- Step 2: Insert rows
INSERT INTO #test_data
VALUES
(1, 'Olivia', '2025-01-05'),
(2, 'Emma', '2025-03-02'),
(3, 'Liam', '2025-11-15'),
(4, 'Noah', '2025-12-22');
If I run this query, how many rows are returned?
SELECT t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers