Dating Your Employer
Looking for a new job? Want to pick the best one? Your employer probably feels the same way. Andy Warren talks about how your interview is more like dating than you think.
2013-09-27
362 reads
Looking for a new job? Want to pick the best one? Your employer probably feels the same way. Andy Warren talks about how your interview is more like dating than you think.
2013-09-27
362 reads
2013-09-26
286 reads
2013-09-25
188 reads
There's a cost to managing data that isn't always considered: the human cost. Additional stress, work, and load can result in less than efficient management, even when you contain hard costs.
2013-09-24
141 reads
The increasing power and shrinking size of computing devices means that more and more people can gather and analyze data. Steve Jones talks about some opportunities.
2013-09-23
107 reads
Can SQL Server scale? Phil Factor has a few thoughts on the capacities that SQL Server can scale to.
2013-09-20
300 reads
We have so many ways in which we can grow our SQL Server careers. Steve Jones shares a few today.
2013-09-19
255 reads
Are you worried about your job in the future? Steve Jones thinks you shouldn't be.
2013-09-18
183 reads
In the future we'll have a more programmable world, but it will be driven more by data than software.
2013-09-17
111 reads
Microsoft is trying to prove that development works well in the cloud by moving their own internal development to the Azure cloud.
2013-09-16
160 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