Wednesday at the PASS Community Summit
The second day of the full PASS Summit was packed with sessions. If fact, it was hard to select from...
2009-11-05
434 reads
The second day of the full PASS Summit was packed with sessions. If fact, it was hard to select from...
2009-11-05
434 reads
Monday at the 2009 PASS Community Summit, for the most part, was reserved for pre-conference sessions, Microsoft Customer Insider sessions,...
2009-11-04
850 reads
The 2010 PASS European Conference will be held in Neuss, Germany, April 21-23, 2010. Details are currently scarce on the...
2009-11-04
784 reads
Today was the first official day of the full (3-day) conference, with about 2,200 full conference attendees. Officially, PASS claims...
2009-11-04
416 reads
At the 2009 PASS Community Summit, I have gotten the opportunity to talk to many DBAs, and to find out...
2009-11-04
589 reads
Registration for the 2009 PASS Community Summit started out strong with many attendees registering early the Sunday evening before the...
2009-11-02
483 reads
Red Gate Software will be handing out a limited number of free paperback books at their booth at the 2009...
2009-11-02
589 reads
Like a lot of other SQL Server bloggers, this week I will attempt to write regular blog entries each day,...
2009-10-31
1,383 reads
If you are a book author, Amazon.com now allows authors to promote their books with a new author’s page. The...
2009-10-28
609 reads
If you will be attending either the 2009 PASS Community Summit in Seattle, WA, from November 2-5; or the SQL...
2009-10-27
438 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