OT: Rewriting History
I’ve been blogging for a few months. During that time I’ve received comments about my grammar, sentence construction and paragraph...
2009-10-11
637 reads
I’ve been blogging for a few months. During that time I’ve received comments about my grammar, sentence construction and paragraph...
2009-10-11
637 reads
I’ve toyed with the CLR in SQL Sever 2005 off and on since the first Yukon beta had it enabled....
2009-10-09
2,839 reads
I’ve been reading through this book and it really does have something for everyone at any level.
I think it...
2009-09-29
1,460 reads
Your servers are only as fast as the slowest part, hard drives.
To feed other parts of the system we have...
2009-09-28
2,687 reads
Your servers are only as fast as the slowest part, hard drives.To feed other parts of the system we have...
2009-09-17
3,332 reads
At least once a year I give a large talk on disk subsystems, IO and SQL Server. It’s a ground...
2009-09-14
1,778 reads
Hello all!
We will be having our normal meeting at the Microsoft technology center sponsored by:
http://www.cactuss.org/Supporters/tabid/59/Default.aspx
Microsoft http://www.cactuss.org/MeetingInformation/tabid/63/Default.aspx
Stonebridge Plaza, Building One...
2009-09-12
1,024 reads
I’ve known Joe for a number of years and have a lot of respect for his experience and knowledge around...
2009-09-11
856 reads
SQL Pretty Printer for SQL Server Management Studio $39.95 single user $99.95 site license
having coding standards is a must for...
2009-09-05
1,883 reads
If you are in Austin you should stop by!
If you want to know what is going on SQL Server wise...
2009-08-18
824 reads
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,...
Quite the title, so let me set the stage first. You have an Azure...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
Comments posted to this topic are about the item Fun with JSON I
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