SQL PASS Summit 2009 – Day 1
Day one for me began with a leisurely breakfast at Top Pot donuts with Jack Corbett, Andy Warren, and Don...
2009-11-03
603 reads
Day one for me began with a leisurely breakfast at Top Pot donuts with Jack Corbett, Andy Warren, and Don...
2009-11-03
603 reads
Day two of the summit found me in the keynote, an interesting but much too long (2 hours) for comfort. ...
2009-11-03
665 reads
I get a lot of requests for explanations about the different concepts and the easiest way to demo partitioning in...
2009-11-03
355 reads
I was working with a team of developers this week who were having the hardest time finding the keystroke to...
2009-11-03
324 reads
Each year I host an opening night party at the PASS Summit. I set up a deal years ago with...
2009-11-03
1,433 reads
We are all facing the challenges of this new economy. There are very few people and industries in the world...
2009-11-03
298 reads
Recently I was working with client and they were discussing the pet peeves of some of the new intellisense features...
2009-11-03
400 reads
Greg emailed me a great question from my week of warehousing webinar the other day. We were discussing disk performance...
2009-11-03
268 reads
How exciting was last week! Some of the top experts in the country all gathered together through support from SQLServerCentral.com,...
2009-11-03
204 reads
Registration for the 2009 PASS Community Summit started out strong with many attendees registering early the Sunday evening before the...
2009-11-02
483 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
Hi Team, I am trying to refresh the Azure Synapse Dedicated pool from production...
hi everyone I am not sure how to write the query that will produce...
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 *
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t; See possible answers