Build a Career Radar
A technology radar can help you assess what's important and where to focus your effort. Companies use these, and Steve Jones says you should as well.
2018-02-23
85 reads
A technology radar can help you assess what's important and where to focus your effort. Companies use these, and Steve Jones says you should as well.
2018-02-23
85 reads
We can't always explain how AI systems work. Steve Jones wonders if this is a loophole in the GDPR legislation.
2018-02-22
144 reads
The need for data imports, exports, and transformations seems to be growing.
2018-02-21
166 reads
2018-02-20
65 reads
The origins of PASS have shaped its culture for years. Are you doing the same in your organization?
2018-02-19
78 reads
Extended Events is a much more complex system and profiler, and the use of templates can reduce the complexity
2018-02-16
45 reads
Perseverance and continued effort, even when you lack knowledge or skill is extremely valuable for a technology professional.
2018-02-15
119 reads
Today Steve Jones asks about how your relationship is at work.
2018-02-14
87 reads
2018-02-13
51 reads
Sometimes a database can seem to be as willful as a colt. Taming it requires an iron nerve, and unflinching eye contact. Occasionally though, you need to know when to jump the fence and regroup.
2018-02-12
75 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