Database Developer tools in Team Foundation Server Now Available in Visual Studio 2010 Premium
So this week I attended a preview for Visual Studio 2010. In addition to database development, I do ASP.NET development...
2009-12-04
2,135 reads
So this week I attended a preview for Visual Studio 2010. In addition to database development, I do ASP.NET development...
2009-12-04
2,135 reads
Endgadget recently had a post up about the Micron Real SSD C300 family of SATA 6Gbps SSDs that will be...
2009-12-04
697 reads
Yesterday was the first time I gave a presentation to a group of professional who knows SQL Server. I was...
2009-12-04
794 reads
My laptop died recently, actually died completely, unable to boot. The hard drive was fine, and I managed to stick...
2009-12-04
483 reads
According to this C|Net report, New York state wants someone to build wind farms in the great lakes and purchase...
2009-12-04
628 reads
The latest Phil Factor challenge is now active here . The prize has now been increased to $100...(read more)
2009-12-04
428 reads
I traveled quite a bit in 2009, hitting 3 SQL Saturdays, 5 user groups and a few other events during...
2009-12-03
419 reads
In the previous post in this series, I discussed the obstacles to implementing electronic health data systems. Because of these...
2009-12-03
1,393 reads
From a Forrester blog: Ten eReader and eBook predictions for 2010.
It’s an interesting read, and I tend to agree with...
2009-12-03
2,235 reads
Let's face it, when it comes to computers there's a 100% certainty that something is going to break eventually. Maybe...
2009-12-03
583 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