Looking Back – PASS Summit 2009 Day 3
I started Wednesday planning on going to the Quest sponsored breakfast (plus presentation about DMVs) but when I bailed when...
2009-11-11
701 reads
I started Wednesday planning on going to the Quest sponsored breakfast (plus presentation about DMVs) but when I bailed when...
2009-11-11
701 reads
Tuesday started early for me because I had to be at the bloggers table in time for the opening remarks...
2009-11-10
638 reads
I intended to blog daily while at the PASS Summit last week. At least that's what I told myself I...
2009-11-09
787 reads
10:25 AM – And that's it for the week! Thanks for tuning in. Be sure to order the Summit DVDs. David's...
2009-11-05
440 reads
10:08 AM – And that's a wrap! See you tomorrow for day 3's keynote.
10:07 AM – Tom talking up the product roadmap.This...
2009-11-04
805 reads
(Note: Updates are listed newest first)
10:15 AM – And we're done! The rooms empty out to grab spots at the first...
2009-11-03
744 reads
Hooray! The PASS Summit is upon us (finally)! Here's what my plans look like for next week:
Monday
My week starts...
2009-10-29
654 reads
Here are the slide decks and code samples from my sessions at SQL Saturday #21 Orlando on 10\17. I've also...
2009-10-26
407 reads
Saturday, 10\17, marked the third year for SQL Saturday here in Orlando and each year it gets bigger and better....
2009-10-26
790 reads
In my last post I talked about how I think managers should approach off-hours work with their teams. It's a...
2009-10-15
526 reads
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...
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
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