VMware vNUMA and SQL Server
Jonathan Kehayias (b | t ) posted a fantastic write up today on VMware’s vNUMA interactions when the operating system feature ‘CPU...
2013-12-31
1,221 reads
Jonathan Kehayias (b | t ) posted a fantastic write up today on VMware’s vNUMA interactions when the operating system feature ‘CPU...
2013-12-31
1,221 reads
I know that this coming year, 2014, is going to be my best year yet! I’m starting 2014 off with...
2013-12-17
706 reads
The last two weeks were just incredible! I gave my first SQL Saturday PreCon training session in Washington DC and...
2013-12-15
660 reads
A wonderful gentleman who attended my SQL PASS Summit session this year recently emailed me and asked me a great...
2013-12-10 (first published: 2013-12-02)
2,078 reads
Mike Fal
Everyone here knows how much I enjoy using the DVDstore database benchmarking utility to benchmark a SQL Server instance....
2013-11-26
1,786 reads
Last night my first guest blog pots over at SQLAuthority has gone live! It is the next in the “Notes...
2013-11-27 (first published: 2013-11-21)
1,386 reads
Tonight I had the pleasure of presenting remotely to the Triangle SQL Server Users Group. I presented my session entitled “Squeezing...
2013-11-20
628 reads
Thursday night I had a great time presenting my session entitled “Squeezing Top Performance from Your Virtualized SQL Server” to...
2013-11-17
708 reads
Jonathan Keyahias (b | t | l) from SQLskills has released a new blog post outlining the metric that Microsoft’s Hyper-V product...
2013-11-14
1,011 reads
Have you ever wondered if that black box in your datacenter called the network is performing as well as it...
2013-11-20 (first published: 2013-11-11)
2,178 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