2022-05-16 (first published: 2018-01-15)
289 reads
2022-05-16 (first published: 2018-01-15)
289 reads
Phil Factor on a tale of how dodgy mock data derailed an otherwise-convincing prototype.
2018-01-15
198 reads
When you need to debug or troubleshoot, Steve Jones wants you to disable, not drop, objects.
2018-01-12
69 reads
Do you know how to answer normalization questions in an interview? Steve Jones gives you a few ideas and recommends you brush up on your knowledge.
2022-05-20 (first published: 2018-01-11)
649 reads
2018-01-10
243 reads
An analysis of salaries uses statistics to determine significance of the data. Is this data science?
2018-01-09
85 reads
The staff that build your systems are more important than your choice of technology.
2022-05-23 (first published: 2018-01-08)
245 reads
With bugs in our CPUs, everyone needs to plan on patching or upgrading.
2018-01-05
101 reads
Some companies don't want to use tools, but that doesn't make sense to Steve Jones.
2018-01-04
104 reads
2018-01-03
75 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
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,...
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