I’m Attending SQLSaturday #51 in Nashville
I’ll actually be going up a couple days early for a PASS Board meeting, then shifting to speaker/attendee mode Friday...
2010-08-20
503 reads
I’ll actually be going up a couple days early for a PASS Board meeting, then shifting to speaker/attendee mode Friday...
2010-08-20
503 reads
In 2009 we had a contentious election cycle at PASS, and I won’t go through the details again, but because...
2010-08-20
650 reads
I found Career Warfare: 10 Rules for Building a Successful Personal Brand on the Business Battlefield by David D’Alessandro ($12@...
2010-08-19
897 reads
I’m flying to Nashville today for the Board meeting on August 19 and 20, 2010. I had already planned to...
2010-08-18
934 reads
I’ve been managing oPASS since we re-hydrated it back in early 2007. Seems like a long time ago! We’ve made...
2010-08-17
581 reads
Had my final follow up call with Don Gabor, took one more run through the networking and speaker stuff (Don...
2010-08-16
647 reads
I get a fair amount of email in a week; stuff about work, stuff for oPASS, stuff for PASS, stuff...
2010-08-13
576 reads
Today we have a guest editorial from Andy Warren that talks about the value of blogging.
2010-08-13
143 reads
I wrote the value of blogging hoping to highlight the less often discussed value of practicing writing. Too often we...
2010-08-13
578 reads
Passing along this contest from Idera and MSSQLTips. I don’t do many plugs, but it’s a chance for someone to...
2010-08-11
787 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