What A Great SQL Saturday! Baton Rouge
Had a great time in Baton Rouge. The event was well attended and had an awesome lineup of speakers. I...
2010-08-16
806 reads
Had a great time in Baton Rouge. The event was well attended and had an awesome lineup of speakers. I...
2010-08-16
806 reads
Scott Gleason just posted a blog yesterday that showed an awesome new tool that people can create little animated videos....
2010-08-15
371 reads
Have you registered for the 24 Hours of PASS (September 15-16) yet?
Tuesday
SQL Lunch - Policy Based Management in a Nushell - Jorge...
2010-08-14
838 reads
I started traveling with two laptops after I had a laptop fail during a trip in 2009 the day of...
2010-08-14
751 reads
I haven’t posted on my SQL Server blog for a few weeks, I missed the August T-SQL Tuesday which I’m...
2010-08-14
523 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
One of my test servers, due to the unexpected growth of a user db, the local drive is used up,...
2010-08-13
11,985 reads
My thanks to everyone at the Space Coast SQL Server User Group for inviting me to speak. Feel free to post questions...
2010-08-13
773 reads
SQL Server 2008 SP1 To Old for Replication?
We are in the middle of a platform upgrade project at work, and...
2010-08-13
1,799 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
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