The End of Estimation - WMV
How interesting would it be to not have to guesstimate what size server to buy for your next application? Steve Jones may have found a way to help you.
2008-01-23
54 reads
How interesting would it be to not have to guesstimate what size server to buy for your next application? Steve Jones may have found a way to help you.
2008-01-23
54 reads
Are specialists worth keeping inside of a company? Or does it pay to hire generalists and then get consultants as needed? Steve Jones comments on the choices you might face as your career grows.
2008-01-22
53 reads
2008-01-21
47 reads
There's a shortage of IT workers, which should lead to a pay raise for some people. Steve Jones takes a look at some recent news about IT salaries.
2008-01-20
112 reads
We get tested in a variety of ways before we take a job, but what should be open for examination besides our technical skills? Answer this week's poll with your opinion.
2008-01-17
58 reads
Two big events this week captured Steve Jones' attention. A little MySQL and Apple commentary to break up the week.
2008-01-16
63 reads
The amount of data in the world grows every day and there's no end in sight. How big a problem is storage management? Steve Jones shares a few thoughts on how you might manage your storage.
2008-01-15
53 reads
How do you decide who gets hired? Do you get the best candidate? Steve Jones says that most of us don't necessarily hire the best person that applies for a variety of reasons.
2008-01-14
49 reads
Our weekly commentary on SQL Server news and notes from the week ending 1/12/08.
2008-01-13
51 reads
This Friday we look forward to the various tech events of 2008 and which speakers you think are worth seeing.
2008-01-13
49 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