2024-10-18
113 reads
2024-10-18
113 reads
Algorithms rule the world and Steve talks about the impact those have on the world.
2024-10-16
126 reads
Steve has a few thoughts on how AIs change the role of databases.
2024-10-14
332 reads
In Azure SQL Database serverless edition, we get an upgrade to our configuration.
2024-10-12
124 reads
The executives at CrowdStrike testify before the US Congress, noting their software development process needs work.
2024-10-11
161 reads
How simple should software development be? Steve notes it can be simple, but not too simple.
2024-10-09
178 reads
How much load do real time updates place on a data warehouse? Steve has a few thoughts on the analysis of the Amazon Redshift dataset, Redset.
2024-10-07
228 reads
As I start this editorial, I am sitting at a PostgreSQL conference in New York City during the nighttime reception. The sound of 100 voices is not quite deafening, but it is certainly loud and understanding anyone in this group would be hard. It is also hard because I only know about four people at […]
2024-10-05
72 reads
Steve reminisces about the older technology of putting words on paper, often from the web.
2024-10-04
66 reads
How many of us clean up our databases and is it worth it? Steve has a few thoughts.
2024-10-02
403 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