SQL PASS 2010 Keynote, Day 1
The day 1 keynote was kicked off by a Tina Turner impersonator doing a rendition of “Simply the Best”. Rushabh...
2010-11-09
961 reads
The day 1 keynote was kicked off by a Tina Turner impersonator doing a rendition of “Simply the Best”. Rushabh...
2010-11-09
961 reads
Many information via Twitter, LinkedIN, forums, blogs, including also here in SSC, have announced about new incmoing version of the...
2010-11-09
881 reads
Day 1 Keynote Jumps the Shark with Tina Turner Impersonator
I’m live blogging the PASS keynote…it’s 8:38 local time.
You wouldn’t guess...
2010-11-09
762 reads
I wrote the editorial asking what people would have been if they had been born 100 years earlier. It’s a...
2010-11-09
449 reads
Last week, a new white paper was released that discusses supportability roadmaps for ISVs. The white paper is Testing and...
2010-11-09
676 reads
I recently became aware of a special hack in Windows 7. It is called GodMode and can very simply be...
2010-11-09
656 reads
Picked up this nice script from a client last week. Use this script below to create a Date Dimension for...
2010-11-08
1,133 reads
When I was young, I never thought I did. I was sure that I knew what was best for my...
2010-11-08
1,035 reads
Hey folks, I recently had the privilege of joining my hometown user group South Florida SQL Server User Group for...
2010-11-08
368 reads
I recently wrote about solid state storage and its different form factor. Well, several major manufacturers have realized that solid...
2010-11-08
543 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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