Minutes of the February 2010 Board Meeting Posted
Strangely we’ve had the March minutes up for many weeks, but just now getting the February minutes posted. This was...
2010-05-11
601 reads
Strangely we’ve had the March minutes up for many weeks, but just now getting the February minutes posted. This was...
2010-05-11
601 reads
We moved to Thursday this month to line things up so that Dean Richards from Confio could do a presentation...
2010-05-11
548 reads
Started Friday by picking up the shirts for the event in Orlando, then heading to Jacksonville with the family, getting...
2010-05-10
439 reads
Now that we’ve moved SQLSaturday to PASS and we’re seeing some really nice growth in the number of events, I...
2010-05-10
497 reads
It’s the third time for Jacksonville, hosting SQLSaturday #38 tomorrow at the University of North Florida. It’s about an hour...
2010-05-07
288 reads
I saw The Checklist Manifesto by Atul Gawande ($15 @ Amazon) at the bookstore and had to read it. I’ve used...
2010-05-06
1,343 reads
Had logged in to American Express check my business account and noticed this on on the front page – a PASS...
2010-05-05
580 reads
The latest issue of the SQL Server Standard is available for download (login required, free registration). Volume 7 Issue 4...
2010-05-05
733 reads
Ran across this while doing some other reading, SSD Tweaker lets you change a few settings that are supposed to...
2010-05-05
572 reads
Sometime soon we’ll start the process of the 2010 PASS election, with three seats on the Board of Directors being...
2010-05-04
402 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