2016-07-04
81 reads
2016-07-04
81 reads
Today we have a guest editorial as Steve is away on vacation. You often hear about how important it is to network. This is a story of how my network helped me get a new job.
2016-07-01
94 reads
Knowing what is happening on your systems, and being told when a system is not behaving normally is very important for administrators. Steve Jones has a few thoughts on monitoring today.
2016-06-30
254 reads
One of the things that can be an issue in database design is the data used to identify a user.
2016-06-29
116 reads
Data science is hot now, but work is being done to use the power of software to handle some of the grunt work with data analysis problems.
2016-06-28
94 reads
Are DevOps and security diametrically opposed? An interesting pieces says no, and Steve Jones comments.
2016-06-27
77 reads
On the First of June, SQL Server 2016 was officially released. While it is still early days to measure the full impact of the release, the one thing that is exceedingly clear is that this is a very successful software release. There have been very few complaints online beyond the standard heard during any upgrade: […]
2016-06-27
160 reads
An interesting question from Steve Jones today, asking what is your experience with designing databases.
2016-06-24
183 reads
R Services were added to SQL Server 2016, and there are customers using this feature to improve their business processes.
2016-06-23
186 reads
2016-06-22
214 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