Guilty of Over-Customising
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
106 reads
Am I guilty of over-customising software? Read this and let us know what you think.
2017-06-12
106 reads
2023-05-12 (first published: 2017-06-09)
326 reads
SQL Server is becoming more capable all the time, requiring fewer human resources for basic management.
2017-06-08
89 reads
2017-06-06
99 reads
I don’t doubt for a minute that on a certain level you’re sick to death of people talking about the Wanna Cry ransomware. However, bear with me, we need to go through it just a little more because it actually has some bearing on us as data professionals. OK, more than some bearing, it’s a […]
2017-06-05
190 reads
2017-06-05
80 reads
Today Steve Jones talks presentations, specifically the best way to share information on a projector.
2017-06-02
172 reads
Steve Jones asks software developers to consider the issues we may have with lax internal security.
2017-06-01
89 reads
Data storage is something all data professionals need to care about, and today Steve Jones talks about a research project from Microsoft.
2017-05-31
103 reads
2017-05-30
56 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