SQLRally, SQL Saturday and The Summit
“Gotta say it was a good day…”
-Ice Cube
On The SQL Saturday Circuit
I’ve been speaking at all the regional SQLSaturday events I...
2011-06-17
645 reads
“Gotta say it was a good day…”
-Ice Cube
On The SQL Saturday Circuit
I’ve been speaking at all the regional SQLSaturday events I...
2011-06-17
645 reads
I am very exicted to be speaking at the San Antonio PASS chapter SALSSA! It’s been way to long and...
2011-06-13
589 reads
Thanks again to everyone who attended. Technical problems aside I had a great time and there were some great questions!
If...
2011-06-08
572 reads
My last in the series on storage and SQL Server is today Wed, Jun 8, 2011 3:00 PM EDT (2:oo...
2011-06-08
673 reads
I saw 500 faces an rocked them all!
To those who attended my webinar today THANK YOU! If you didn’t…. There...
2011-05-26
651 reads
Pliant Technology, New Kid On The Block
If you have been reading my storage series, and in particular my section on...
2011-05-23
3,200 reads
Yesterday I presented Understanding Storage Systems and SQL Server and had a fantastic time! The crowd was great and was...
2011-05-13
543 reads
I am happy to announce that I’ll be joining Idera’s Advisor & Community Educator for SQL Server program.
Getting More Involved
I’ve always...
2011-05-02
491 reads
Just a note that I will start my three part webcast, SQL Server, Storage and You next week April 13th...
2011-04-08
1,010 reads
So,
I actually had a early morning sessions and gave my Solid State Storage talk and had a great time. The audience was...
2011-04-02
638 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