Broken or Just Bent? #passvotes
Though things have died down a bit since the initial backlash, the recent development in the PASS board election process...
2010-09-14
694 reads
Though things have died down a bit since the initial backlash, the recent development in the PASS board election process...
2010-09-14
694 reads
I’ve fielded a number of requests recently asking how to interrogate a file within SSIS and change the processing rules...
2010-08-26
11,640 reads
I’ve fielded a number of requests recently asking how to interrogate a file within SSIS and change the processing rules...
2010-08-23
23,005 reads
Last weekend I went to Baton Rouge (by way of New Orleans) to attend and speak at the second annual...
2010-08-21
1,077 reads
Unless you’ve spent the last two days hiding under a rock, you’ve heard the uproar around this week’s development in...
2010-08-19
782 reads
First, apologies to those of you outside the Dallas-Ft. Worth metro area… I’ve backed off from using my blog as...
2010-08-17
609 reads
Today we have a guest editorial from Tim Mitchell that tells you how to turn a bad job into something more.
2010-08-16
382 reads
The second annual SQL Saturday Baton Rouge event is coming up in less than two weeks! Have you registered?
I’m honored...
2010-08-02
607 reads
There are some questions that can’t necessarily be answered in a book or a training video. Those are often the...
2010-08-02
597 reads
Have you heard the sound of silence? Yep, that’s been my blog.
It’s been weeks since I’ve posted anything on here,...
2010-07-27
682 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