A Dark Picture - Management Presentation
It was really Andy Warren's presentation, but he usually ropes me in to add a different perspective on the various...
2008-11-19
858 reads
It was really Andy Warren's presentation, but he usually ropes me in to add a different perspective on the various...
2008-11-19
858 reads
I spent most of yesterday in the PASS volunteer training. It's not really training, more of a gathering of volunteers...
2008-11-19
913 reads
A film clip opening from MS, quotes and short sound bites from a variety of people from he SQL Server...
2008-11-19
1,763 reads
With the dimming of lights, the drone of "Born to be Wild" from Steppenwolf, and an opening film slip of...
2008-11-19
944 reads
I don't mean to comlpain, and I certainly don't need any more bags, but when I checked in Monday night...
2008-11-18
646 reads
How many mirrrored databases can I have on a server?
10 mirrored databases per server is the recommendation for a 32...
2008-11-18
6,427 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-11-18
573 reads
2008-11-18
647 reads
I endorsed Andy Warren for the board the other day, and I'll stand by that. I'm biased, so if you're...
2008-11-18
1,255 reads
I got the email with a Zoomerang survey to vote for the PASS board. All are excellent candidates, but ultimately,...
2008-11-18
940 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