SQLSaturday Atlanta & South Florida 2019
I’ll be in South Florida again this year and will stay over as usual for a couple days of vacation. I see Brent is attending; I’ll have to make...
2019-02-18
9 reads
I’ll be in South Florida again this year and will stay over as usual for a couple days of vacation. I see Brent is attending; I’ll have to make...
2019-02-18
9 reads
Today we have a guest editorial from Andy Warren as Steve is away on vacation. This was originally published on Dec 23, 2014. I was reflecting recently on my first real IT job. It was a small-ish company when I joined it, perhaps a hundred employees or so, and still using a mishmash of software […]
2019-02-18 (first published: 2014-12-23)
208 reads
I won’t blog all of these we do, but wanted to capture a few thoughts and then revisit later in...
2019-02-17
119 reads
I drove over to Melbourne on to speak to the group, hadn’t been over in a while. Quick notes:
8 attendees,...
2019-02-17
107 reads
Notes:
We had 17 register and 8 attend our first lunch meetup of the year at Fuzzy’s Tacos Great venue. $10...
2019-01-26
209 reads
Last year (the first filing) I had my accountant do the filing for SQLOrlando, but this year I wanted to...
2019-01-26
164 reads
SQLSaturday Jacksonville 2019 is scheduled for May 4, 2019. The call for speakers closes on March 5.
2019-01-21
181 reads
SQLSaturday Tampa just went live and the call for speakers is open through February 23, 2019. I’ll be attending, hope to see you there!
2019-01-21
3 reads
SQLSaturday Tampa just went live and the call for speakers is open through February 23, 2019. I’ll be attending, hope...
2019-01-21
182 reads
It started on Saturday. I usually have lunch with one or both of my daughters on the weekend and this week it was just my oldest, going on 15....
2019-01-21
9 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,...
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...
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