VMware vCenter Web Client IP redirect solution
If you are working on a VMware vCenter Server v5.5 in an environment that has multiple segregated VLANs designed to...
2014-09-30
1,491 reads
If you are working on a VMware vCenter Server v5.5 in an environment that has multiple segregated VLANs designed to...
2014-09-30
1,491 reads
This past week I was fortunate enough to attend a three-day special session at VMware Corporation’s corporate campus in Palo Alto,...
2014-09-17
1,025 reads
A few weeks ago I was fortunate enough to attend VMware’s VMworld 2014 conference in San Francisco, CA. The show...
2014-09-10
484 reads
My summer event hiatus is coming to a close, and we’re now back into the conference and event season! I’ve...
2014-09-02
739 reads
Our company, Heraflux Technologies, celebrated its first birthday today on September 1st. A very sincere thank you goes to all...
2014-09-02
510 reads
Can you believe that this year’s VMworld conference is just around the corner? It’s next week – August 24 – 28 – at...
2014-08-20
626 reads
Next Wednesday, August 20th, at 7:30pm Central I will be presenting a webinar for the Professional VMware #vBrownBag entitled “SQL...
2014-08-13
610 reads
I’m proud to announce that yesterday the first installment of my new Stairway series at SQL Server Central has been...
2014-08-07
1,029 reads
Today I presented a fun session for the SQL PASSPerformance Virtual Chapter’s “Summer Performance Palooza 2014” entitled “Infrastructure Tuning for...
2014-07-24
491 reads
If it were not for the SQL Server community, I would not be where I am at with my career...
2014-07-03
738 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...
Hi all, I just started using VS Code to work with DB projects. 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
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