PASS Summit 2009 – Day 2
Day 2 of the Summit was extremely busy. I missed a breakfast on DMV’s that evidently was one of the...
2009-11-05
1,352 reads
Day 2 of the Summit was extremely busy. I missed a breakfast on DMV’s that evidently was one of the...
2009-11-05
1,352 reads
Wow, the bloggers table is empty today!
Nice intro! Good photo’s. I love the Summit!
Bill Graziano is introducing Day 3. He...
2009-11-05
1,319 reads
Patrick Ortiz from Dell, the platinum sponsor for the PASS Summit.
The goal will be to discuss the Dell Microsoft Practice,...
2009-11-05
505 reads
Dr. David DeWitt
“I’m not a doctor.” This is going to be good. “From 1 to 1000 MIPS” He’s doing great....
2009-11-05
678 reads
YAAAAAH!
The PASS Summit is pretty amazing. Yesterday I sat through the key notes from Microsoft. I was at the bloggers...
2009-11-04
563 reads
Nice phot montage, included so many friends. I love PASS.
Rushab Mehta launching the Wednesday key note. Unfortunately, this is the...
2009-11-04
507 reads
Tom Casey of Microsoft on BI.
20% of people that are decision makers within organizations have the tools and information they...
2009-11-04
587 reads
More demos using Analysis Services from R2. They’re showing how you can refresh data & reports without having to write a...
2009-11-04
552 reads
Monday at the PASS Summit. It’s always a big day. This year it’s the eve of the Summit and the...
2009-11-03
752 reads
Set up and and ready to go. Wayne Snyder is going to open the ceremonies and the key note will...
2009-11-03
383 reads
By HeyMo0sh
Over time, I’ve realised that one of the hardest parts of cloud management isn’t...
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
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