The Future of Technical Education
Some people just love to talk. I guess I’m one of those people. I admit it. But there is a...
2009-10-14
426 reads
Some people just love to talk. I guess I’m one of those people. I admit it. But there is a...
2009-10-14
426 reads
The Future of Monitoring website, hosted by the Software Development Usability Team at Red Gate Software, is sponsoring a “Design...
2009-10-14
325 reads
As I work on moving a large system with multiple database servers from a 27TB SAN to a single database...
2009-10-14
800 reads
Hi,
Yesterday while talking to my friend, he reviewed my blog and suggested that I was having so many spelling...
2009-10-13
431 reads
If you’re involved with maintaining Microsoft Operations Manager, you probably have a few things you’d like to tell the developers,...
2009-10-13
517 reads
One of the things on my todo list for this past week was to upgrade a SQL 2005 Standard Instance...
2009-10-13
734 reads
Someone was asking about using multiple data files recently to try and increase performance. I had answered that unless you...
2009-10-13
3,997 reads
I wrote an article for SQLServerCentral entitled "Database Space Capacity Planning" that demonstrates a database and volume (disk) capacity planning solution...
2009-10-13
1,000 reads
I keep seeing these concepts that have long been disproven, posted again and again on newsgroups as if they were valid information. The...
2009-10-13
671 reads
Ever had a day when a bunch of small things run together to create a day you wish you had...
2009-10-12
325 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