Four Big Things PASS Could Do Next Year
Here’s my wish list:
Fix the membership problem. One voter, one vote. That’s what we want. The current hack of requiring...
2014-09-25
736 reads
Here’s my wish list:
Fix the membership problem. One voter, one vote. That’s what we want. The current hack of requiring...
2014-09-25
736 reads
Notes:
We sent out a final you haven’t paid for lunch reminder on Wed, asked for a reply if they were...
2014-09-25
478 reads
Registration count after some cancellations now at 577, way above my goal of 500. We’ve decided not to spend on...
2014-09-24
509 reads
I’ve wanted to do this for a while, decided to make the time commitment and see what happens. See the...
2014-09-22
547 reads
It’s Saturday a week out and I’m trying to finish up messages for the week. A lot to send this...
2014-09-20
719 reads
Ever since SQLSaturday #1 our venue has been Seminole State College (Seminole Community College back then), provided graciously and perhaps...
2014-09-19
762 reads
More notes:
Registration at 520. Not as big a bump this week as we expected, probably due to the message going...
2014-09-18
527 reads
A friend recently asked me about my involvement with PASS, and that lead to the two questions in the title....
2014-09-17
770 reads
I’ve got most of the messages up through Sep 27th drafted. Still need to tweak a couple, but close to...
2014-09-16
549 reads
We’ve just wrapped up the interviews and I wanted to jot down a few thoughts on what I’ve seen from...
2014-09-15
515 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