The School Year
This Friday Steve Jones looks forward to the rest of the year. It's almost time for school and do you have plans? Should you be making some plans?
2013-08-02
103 reads
This Friday Steve Jones looks forward to the rest of the year. It's almost time for school and do you have plans? Should you be making some plans?
2013-08-02
103 reads
Humans are often the weakest links in any computer process, but we do need human input. Steve Jones talks about a few issues, and how we should be changing our workflow to reduce issues.
2013-08-01
122 reads
It seems that QA is being cut more and more as software development advances. Is that a good thing? Steve Jones has some thoughts.
2017-05-12 (first published: 2013-07-31)
209 reads
Today Phil Factor talks about Big Data, and all the hype that's in the news.
2013-07-30
271 reads
Today we have a guest editorial from Phil Factor that looks at NoSQL databases.
2013-07-29
543 reads
Phil Factor leafs through a few of his PowerShell books in his library, and considers which are his favorites
2013-07-29
147 reads
It is very difficult to pinpoint what ails a server, just by looking at a single snapshot of the data, or to spot retrospectively what caused the problem by examining aggregated data for the server, collected over many months. The answer? Baselines.
2013-07-22
540 reads
Hiring a diverse group of people can make your team work better. Steve Jones has a few thoughts today.
2017-08-15 (first published: 2013-07-22)
199 reads
We don't often predict for disasters, which is good since we rarely have extensive plans for dealing with them. If we do, do we actually test our plans, or test the systems under full load?
2013-07-19
127 reads
How do you keep track of passwords? A few experts out there share some of their techniques and Steve Jones adds his thoughts.
2013-07-18
295 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