PASS Summit Sunday Night Dinner & Meetup
Earlier this week I posted the announcement about an informal get together on Sunday night November 7th for those arriving...
2010-11-05
1,094 reads
Earlier this week I posted the announcement about an informal get together on Sunday night November 7th for those arriving...
2010-11-05
1,094 reads
For the third year in a row, we’ve had a blockbuster PASSMN Board of Directors election. By that, I mean...
2010-11-05
612 reads
I wasn’t going to make a special effort for the one hundredth post on my blog, I was intending to...
2010-11-05
778 reads
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the fourth post of my “SQLBIGeek’s Function Friday” blog series. In this series, I am...
2010-11-05
581 reads
No speaker interview today, (didn't have time to format it today), just some reflection on the Speaker Interview Series, thus...
2010-11-05
656 reads
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf files and the business required that no identical documents...
2010-11-05
15 reads
I developed an SSIS package that loads invoices, statements, pro-formas, etc. into a SQL Server table. The invoices are .pdf...
2010-11-05
633 reads
I developed an SSIS package that loads invoices, statements, pro-formas,
etc. into a SQL Server table. The invoices are .pdf files and the business
required that no identical documents...
2010-11-05
221 reads
No, not backups as in SQL Server backups, but who to tag when someone is out or so slammed with...
2010-11-05
2,095 reads
When I run on the treadmill, I have a TV and DVD player down there and have been watching Star...
2010-11-05
484 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