PASS Summit 2013–Board Q&A
PASS Board Q&A just starting. Session is being recorded – transcript will be published, no decision on whether recording will be...
2013-10-18
714 reads
PASS Board Q&A just starting. Session is being recorded – transcript will be published, no decision on whether recording will be...
2013-10-18
714 reads
The PASS Board of Directors will be available for questions from the members from 12:30 to 1:45 in Ballroom C....
2013-10-18
614 reads
Today flew by. I posted earlier about my visit with Dr. DeWitt and it’s late, so bullets for the rest...
2013-10-17
632 reads
Waiting on the second day keynote to begin.
Douglas McDowell going over funding sources for PASS – primarily the Summit, but $100k...
2013-10-17
619 reads
Incoming President Thomas LaRock up. 3000 viewers of PASS TV yesterday. Adam Jorgensen the the new VP of Finance and...
2013-10-17
708 reads
I was lucky/thrilled to get to spend a few minutes chatting with Dr. DeWitt this afternoon (and thanks to PASS...
2013-10-16
637 reads
I took a quick break at 5:30 to drop off my bag at the hotel and head back to attend...
2013-10-16
286 reads
I’m starting the official ‘day one’ at the bloggers table with Tim Mitchell and Colin Stasiuk. We’re at a side...
2013-10-16
368 reads
Waiting on Microsoft keynote to begin. Hoping for excitement!
SQL 2012 has had fastest adoption rate. No arguing it’s good, wonder...
2013-10-16
571 reads
Still at the opening day keynote, waiting for next demo to start.
I think the PASS water bottles are the most...
2013-10-16
659 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
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