SQL Saturday 56 Dallas (BI Edition) - Recap
This past Saturday, our NTSSUG group hosted SQL Saturday 56, which was our second SQL Saturday of the year. This...
2010-10-26
1,051 reads
This past Saturday, our NTSSUG group hosted SQL Saturday 56, which was our second SQL Saturday of the year. This...
2010-10-26
1,051 reads
The PASS Summit is just around the corner, less than a month away. Although I’m not presenting a session at...
2010-10-19
591 reads
I spent this past weekend traveling to and attending SQL Saturday Colorado in the outskirts of Denver. This was the...
2010-09-30
2,935 reads
Though things have died down a bit since the initial backlash, the recent development in the PASS board election process...
2010-09-14
694 reads
I’ve fielded a number of requests recently asking how to interrogate a file within SSIS and change the processing rules...
2010-08-23
23,005 reads
Last weekend I went to Baton Rouge (by way of New Orleans) to attend and speak at the second annual...
2010-08-21
1,077 reads
Unless you’ve spent the last two days hiding under a rock, you’ve heard the uproar around this week’s development in...
2010-08-19
782 reads
First, apologies to those of you outside the Dallas-Ft. Worth metro area… I’ve backed off from using my blog as...
2010-08-17
609 reads
The second annual SQL Saturday Baton Rouge event is coming up in less than two weeks! Have you registered?
I’m honored...
2010-08-02
607 reads
There are some questions that can’t necessarily be answered in a book or a training video. Those are often the...
2010-08-02
597 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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