PASS 2008 - Day 1 (Mon)
Fairly easy day, up at 5 am for an 8:15 am flight to Seattle via Detroit, arrived about 2:30 pm...
2008-11-17
532 reads
Fairly easy day, up at 5 am for an 8:15 am flight to Seattle via Detroit, arrived about 2:30 pm...
2008-11-17
532 reads
More updates from the nominating committee:
"As a PASS-slated candidate, we would like to promote you and your vision and experience...
2008-11-16
503 reads
This is what I provided to the nominating committee today. I think I could have worked on this for weeks...
2008-11-16
1,418 reads
Looks like I'm still in the game! Just received word from Kevin Kline (Past PASS President). Here are the candidates:
Andy...
2008-11-14
1,312 reads
I'm using a Goggle blog for another project and overall it works fine, no complaints. I've also switched to using...
2008-11-13
576 reads
We had our meeting on November 11, 2008, with 27 people attending. Our featured speaker was Jessica Moss, SQL MVP...
2008-11-12
538 reads
Just heard back from Allen White, due to his schedule and minimal success creating a true team effort plans for...
2008-11-12
544 reads
I don't typically do Internet chain mail, but Brian Kelley mentioned me in his post on his two mistakes and...
2008-11-11
737 reads
I'm going to share what I can from the interview, but I'm going to have to be a little less...
2008-11-10
378 reads
It's funny that many employees see moving into management as a way to stop actually doing work. In practice - if...
2008-11-09
244 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