ScriptDom Visualizer V2
I have made a few ui changes to this to make it a little more usable, I can't really think of any new features so if anyone has any...
2015-11-06
2 reads
I have made a few ui changes to this to make it a little more usable, I can't really think of any new features so if anyone has any...
2015-11-06
2 reads
I have made a few ui changes to this to make it a little more usable, I can’t really think...
2015-11-06
27 reads
I have made a few ui changes to this to make it a little more usable, I can't really think...
2015-11-06
564 reads
I have made a few ui changes to this to make it a little more usable, I can’t really think...
2015-11-06
21 reads
Another day another deployment contributor for the project: https://github.com/DacFxDeploymentContributors/Contributors.
This one came about because I was talking to Peter Schott (b|t) over at the deployment contributor gitter room and he...
2015-11-05
4 reads
Another day another deployment contributor for the project: https://github.com/DacFxDeploymentContributors/Contributors.
This one came about because I was talking to Peter Schott (b|t)...
2015-11-05
22 reads
Another day another deployment contributor for the project: https://github.com/DacFxDeploymentContributors/Contributors.
This one came about because I was talking to Peter Schott (b|t)...
2015-11-05
363 reads
Another day another deployment contributor for the project: https://github.com/DacFxDeploymentContributors/Contributors.
This one came about because I was talking to Peter Schott (b|t)...
2015-11-05
21 reads
I have added my first actual deployment contributor to my deployment contributor project:
https://github.com/DacFxDeploymentContributors/Contributors
The idea is basically for people to share ideas about writing deployment contributors for SSDT and help...
2015-11-04
3 reads
I have added my first actual deployment contributor to my deployment contributor project:
https://github.com/DacFxDeploymentContributors/Contributors
The idea is basically for people to share...
2015-11-04
14 reads
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
Comments posted to this topic are about the item Fun with JSON I
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