DevOps at Microsoft
Microsoft has dramatically changed the way they develop software, in a very public way, as Steve Jones notes.
2016-09-27
113 reads
Microsoft has dramatically changed the way they develop software, in a very public way, as Steve Jones notes.
2016-09-27
113 reads
The world of machine learning and artificial intelligence are growing. Steve Jones notes this means we need to decide if we can trust the black boxes.
2016-09-26
66 reads
Why would I want the boss to be able to see so easily every little bad thing that happens on my servers? Grant Fritchey offers a few reasons...
2016-09-26
131 reads
This Friday Steve Jones looks to find out what things help people learn and build skills more readily.
2016-09-23
86 reads
A competition among software bots may foretell a vision of the future for software developers.
2016-09-22
94 reads
Is your company a tech company? Steve Jones looks at the world from the perspective of software development and how that impacts business.
2021-08-27 (first published: 2016-09-20)
140 reads
This week Steve Jones notes that backups aren't the most important thing for your data. Restores are.
2016-09-19
107 reads
Today Steve Jones discusses the mythical 10x programmer from the context of databases.
2020-09-24 (first published: 2016-09-19)
299 reads
2020-09-25 (first published: 2016-09-16)
1,538 reads
Data Science is a hot area and one to which quite a few people would like to move. Steve Jones has some thoughts on trying to get certified in this area.
2016-09-15
168 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