PASS Summit 2012 Review
Life is finally returning to normal after a great week in Seattle for PASS Summit 2012. The entire year is...
2012-11-23 (first published: 2012-11-13)
1,615 reads
Life is finally returning to normal after a great week in Seattle for PASS Summit 2012. The entire year is...
2012-11-23 (first published: 2012-11-13)
1,615 reads
Did you attend PASS Summit and miss out on some sessions because there were so many or you were busy...
2012-11-21
1,242 reads
Thanks to all who attended my webinar last Thursday on Building Dynamic Cube Reports. You can find my code
Recording:
http://pragmaticworks.com/LearningCenter/FreeTrainingWebinars/WebinarDetails.aspx?ResourceId=470
Code:
http://sdrv.ms/RqxbcF
There are...
2012-10-30
1,634 reads
Join me next week for a really fun presentation on building Dynamic SSRS
reports using Analysis Services cubes as a...
2012-10-18
1,600 reads
If you missed any of the great 24 hour of PASS sessions from September you
can now watch the recordings.
http://www.sqlpass.org/UserLogin.aspx?returnurl=%2fLearningCenter%2fSessionRecordings%2f24HoursFall2012.aspx
Details...
2012-10-12
1,075 reads
Several weeks ago I posted a quick survey on my blog that asked how you choose a session to attend...
2012-10-03
964 reads
Last week during my 24 Hours of PASS session on Choosing a Reporting Platform I fielded a question that appeared...
2012-09-26
1,299 reads
Tomorrow Brian Knight and I will kick off 24 hours of PASS with a session on Choosing a Microsoft Reporting...
2012-09-19
1,175 reads
Many of you have attended sessions by technical speakers at conferences and mini-conferences like SQL Saturday, SQL Rally, 24 Hours...
2012-09-12
1,097 reads
September is another busy month of speaking events for me and I thought I’d share them with you so maybe...
2012-08-29
1,723 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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