What is SSDT? Part 2 - More Reasons to Bother!
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
30 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
30 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
17 reads
In part 1 of this series available here I introduced my drawing of what I think SSDT is and talked...
2016-01-06
41 reads
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to what it is as it is actually pretty big....
2016-01-05
4 reads
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to...
2016-01-05
49 reads
I often get asked the questions “What is SSDT” and I have wanted to have a single reference as to...
2016-01-05
63 reads
Failures happen with manual and automated releases, they are a fact of life. Make sure you know how and when to rollback failed deployments
2015-12-31
1,697 reads
You sometimes want to do things like split a table into two or move a column into another table and when you use SSDT or the compare / merge...
2015-12-30
4 reads
You sometimes want to do things like split a table into two or move a column into another table and...
2015-12-30
1,214 reads
You sometimes want to do things like split a table into two or move a column into another table and...
2015-12-30
209 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