2015-01-23
374 reads
2015-01-23
374 reads
Technology shouldn't just be a cost sink in an organization, at least that's what Steve Jones thinks.
2015-01-22
116 reads
There's one word that can make a difference in how much you like your job. Steve Jones has a few thoughts today.
2015-01-21
222 reads
With so many companies looking at other platforms, when should an organization consider changing their database? Steve Jones has a few thoughts.
2018-11-08 (first published: 2015-01-20)
254 reads
Steve Jones talks about procrastination today and how you might not want to do that with your SQL Servers.
2015-01-19
112 reads
We database developers would, of course, like easy access to all the .NET delights, such as the excellent Regex library, but we don't want a Do-It-Yourself kit to achieve this. So argues Phil Factor.
2018-12-12 (first published: 2015-01-19)
458 reads
This week we have a more technical poll as Steve Jones wonders how you best debug your T-SQL code.
2019-05-27 (first published: 2015-01-16)
465 reads
Perspective makes a big difference and Steve Jones looks at how you might change the way you think about clients, customers, and the work you do.
2015-01-15
142 reads
Hadoop is a technology that's getting quite a bit of attention in the last few years, including integration with SQL Server. Steve Jones talks about the technology and how it might fit in your career.
2015-01-14
679 reads
We know that software testing is important, but we often don't do a great job of executing. Steve Jones talk database testing today.
2015-01-13
222 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