Nervous
According to the timeline (PDF), the PASS Nominating Committee is supposed to contact the applicants today or tomorrow and let...
2010-08-16
746 reads
According to the timeline (PDF), the PASS Nominating Committee is supposed to contact the applicants today or tomorrow and let...
2010-08-16
746 reads
The SQL Server Society of Las Vegas meeting has come and gone once again. This meeting is held typically on...
2010-08-16
432 reads
That’s right! PASSMN is breaking the mold and heading onto new ground. We are making our second annual Friday full-day...
2010-08-16
541 reads
It has been a couple of months since I have posted an update to my “SQL Server 2008 and R2...
2010-08-16
1,693 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
Synchronizing SQL user in Database Mirroring:
If a login used in an application that involves database mirroring has SQL Login, there...
2010-08-16
2,335 reads
Text of my keynote from SQL Saturday #28
Welcome to SQL Saturday #28 and I'm pleased to be back in Baton...
2010-08-16
2,093 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
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,...
Looking for a creative and experienced mobile game development company that brings your game...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
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