Join me for the 2013 Biml Workshop
Of the many emerging technologies I’m currently using, there’s nothing that excites me more than Biml. If you’re not familiar...
2013-08-21 (first published: 2013-08-14)
1,249 reads
Of the many emerging technologies I’m currently using, there’s nothing that excites me more than Biml. If you’re not familiar...
2013-08-21 (first published: 2013-08-14)
1,249 reads
As I was browsing my calendar of upcoming events for the remainder of the summer and the fall, I realized...
2013-08-16
810 reads
When it comes to ETL, I’m a pessimist. Until proven otherwise, I assume that all data is bad, all connections...
2013-08-05
1,971 reads
Through the course of my career, I’ve spent time on both sides of the job interview table, which has given...
2013-08-02
777 reads
I love music. In fact, I like to think that I’m a student of music – although anyone who has heard...
2013-06-21
1,007 reads
I’m happy to announce that I’ll be delivering three, one-day preconference seminars this summer prior to three different SQL Saturday...
2013-06-07
917 reads
In the first post in this series, I covered the basics of object typed variables in SQL Server Integration Services,...
2013-05-28
1,870 reads
This is a temporary post that was not deleted. Please delete this manually. (e621c360-788f-48aa-bd56-670930569ab5 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2013-05-25
779 reads
I’m happy to announce that I have been selected to present
at the SQL PASS Summit in Charlotte, North Carolina this...
2013-05-22
680 reads
Tomorrow at 10am (11am EDT), I’ll be joining together with my good friend and SSIS Design Patterns coauthor Andy Leonard...
2013-05-07
858 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