Lunch with someone new
I met up for lunch with a good friend and former coworker today, and among the topics of discussion was...
2014-02-19
844 reads
I met up for lunch with a good friend and former coworker today, and among the topics of discussion was...
2014-02-19
844 reads
This is the first in a series of technical posts on using parent-child architectures in SQL Server Integration Services. The...
2014-02-07
2,203 reads
I’m happy to announce that I’ll be teaming up with my Linchpin People colleague Bill Pearson for a day of...
2014-01-29
929 reads
I’m kicking off a new series of blog posts discussing the topic of parent-child architectures in SQL Server Integration Services....
2014-01-20
1,352 reads
For me, 2013 was one of the most interesting and busy years of my life. It was a good year...
2014-01-01
773 reads
Earlier this morning I received a notification from the Microsoft MVP program that I’ve been recognized as a SQL Server...
2014-01-01
652 reads
Today is the second day of the 2013 SQL PASS Summit, and I’m again live blogging the event.
8:15: Here...
2013-10-17
833 reads
Today is the first full day of the PASS Summit 2013 conference. This year I’m again joining the blogger table...
2013-10-16
1,105 reads
It’s that time of the year again – time to make your voice heard as a PASS member. The PASS board...
2013-09-25
881 reads
This past weekend I made the relatively short (about 3 hours) trip to the Oklahoma City area to attend and...
2013-08-26
804 reads
By Vinay Thakur
Continuing from Day 3 where we covered LLM models open/closed and their parameters, Today...
By Steve Jones
One of the nice things about Flyway Desktop is that it helps you manage...
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
I'm fairly certain I know the answer to this from digging into it yesterday,...
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...
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