2023-10-06 (first published: 2017-01-30)
461 reads
2023-10-06 (first published: 2017-01-30)
461 reads
2017-01-30
73 reads
Code reviews are a part of many developers' lives, but is there a limit to what you can do effectively?
2023-10-09 (first published: 2017-01-27)
255 reads
There are some changes to memory limits in SQL Server 2016 SP1 Standard Edition.
2017-01-26
1,650 reads
When things go wrong, how do you handle them? Steve Jones comments on crisis management using a great example from Amazon.
2017-01-25
210 reads
Being unemployed is difficult. Here's something I learned to help me through it.
2017-01-24
286 reads
2017-01-23
119 reads
2017-01-23
101 reads
Sometimes the hardware or software we use prevents upgrades, which isn't necessarily good for any of us.
2017-01-20
83 reads
Steve Jones notes that PowerShell seems to becoming an easier to use language for SQL Server professionals.
2022-03-09 (first published: 2017-01-19)
416 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