K-SSIS-ed
K-SSIS-ed - View any property or script in SSIS with a single click A cross platform re-imagined IDE and SSIS package...
2017-08-17
82 reads
K-SSIS-ed - View any property or script in SSIS with a single click A cross platform re-imagined IDE and SSIS package...
2017-08-17
82 reads
K-SSIS-ed - View any property or script in SSIS with a single click A cross platform re-imagined IDE and SSIS package...
2017-08-17
57 reads
SQL Cover is a tool to measure code coverage in T-SQL. This will tell you how much of your database code your unit tests are exercising.
You can read more...
2017-08-17
20 reads
SQL Cover is a tool to measure code coverage in T-SQL. This will tell you how much of your database...
2017-08-17
58 reads
SQL Cover is a tool to measure code coverage in T-SQL. This will tell you how much of your database...
2017-08-17
62 reads
What is the SSDT Dev Pack It is basically a collection of tools that I find make developing in for SQL Server in SSDT better or easier. I will...
2017-08-17
7 reads
What is the SSDT Dev Pack It is basically a collection of tools that I find make developing in for...
2017-08-17
95 reads
What is the SSDT Dev Pack It is basically a collection of tools that I find make developing in for...
2017-08-17
53 reads
DevOps isn't running SQL Server in a container and pushing code to it from Jenkins
When we talk about DevOps we envision that we have the ability to check-in code,...
2017-06-13
5 reads
DevOps isn't running SQL Server in a container and pushing code to it from Jenkins
When we talk about DevOps we...
2017-06-13
355 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