Upcoming SQL Server User Group Presentations
I’ll be speaking at two New England area SQL Server user groups in the next few days! First, tonight I’ll...
2017-07-24
300 reads
I’ll be speaking at two New England area SQL Server user groups in the next few days! First, tonight I’ll...
2017-07-24
300 reads
My slide deck from the recent webinar series 24 Hours of PASS, Summit Preview session, where I presented a session...
2017-07-23
332 reads
I get asked all the time – “why virtualize SQL Server if I’m content with my physical servers today?” The normal...
2017-07-24 (first published: 2017-07-12)
3,122 reads
If you are actively managing VMware environments with workloads that have high performance needs (such as all of the virtualized...
2017-07-05
482 reads
I’m proud to announce that I’ve been selected to present a session in this year’s 24 Hours of PASS: Summit...
2017-07-03
343 reads
I’m proud to announce that my sessions for this year’s VMworld 2017 conference in Las Vegas have turned up in...
2017-06-30
655 reads
VM snapshots are one of the best virtualization features ever. But…have you ever had a VMware vSphere or Hyper-V snapshot...
2017-07-06 (first published: 2017-06-26)
1,402 reads
I am very proud to contribute to a new webinar with Rubrik on Thursday, June 22 at 8AM PT / 11AM ET...
2017-06-19
372 reads
PASS has just announced this year’s precon sessions for the PASS Summit in Seattle this October, and I am humbled...
2017-06-13
408 reads
SQL Server administration, once installed and running, doesn’t vary too much based on your operating system, but the differences in...
2017-05-30
1,028 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