When SQLCommunity disappoints....
Everyone who is involved in, and follows me in the SQL Server Community, and my blog, knows, that I am one...
2012-07-20 (first published: 2012-05-08)
3,162 reads
Everyone who is involved in, and follows me in the SQL Server Community, and my blog, knows, that I am one...
2012-07-20 (first published: 2012-05-08)
3,162 reads
In doing some additional testing on contained databases, I decided to create a new database on a new test VM.
CREATE...
2012-07-19
2,151 reads
Office 2013 Preview is not avialable. I'm particularly interested in Excel 2013 and new self-server BI features so I decided...
2012-07-19
779 reads
In this blog post we cover instructions on how to enable PowerPivot in Excel 2013 (you can follow them in...
2012-07-19
1,158 reads
In this blog post I will share steps I have taken to set up PowerView using Excel 2013. Hopefully tomorrow...
2012-07-19
979 reads
Quick notes from the MagicPASS meeting:
Kendal Van Dyke still the king when it comes to explaining what’s going on with...
2012-07-19
719 reads
If you got some with me at SQL in the City last week I London, or anytime in the last...
2012-07-19
1,062 reads
Last time we went over the basics of creating a SQL Audit. Now obviously once you’ve gotten your audit in...
2012-07-19 (first published: 2012-07-16)
3,240 reads
The SQL Saturday/TechDay in Baton Rouge will be the forth annual this year. The Business Intelligence sessions occupy 2 tracks...
2012-07-19
893 reads
If there is anything better than a SQLSaturday it’s a SQLSaturday with a choice of great pre-con speakers. This year...
2012-07-19
703 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