Next oPASS Meeting is July 23, 2015 with David Crook
The next OPASS meeting is July 23, 2015, featuring David Crook from Microsoft doing a presentation on predicting home value...
2015-07-16
547 reads
The next OPASS meeting is July 23, 2015, featuring David Crook from Microsoft doing a presentation on predicting home value...
2015-07-16
547 reads
PASS announced yesterday the end of the SQLRally brand. It was disappointing news for an idea that started with such...
2015-07-14
653 reads
Just read Microsoft IT migrates mailboxes to Office 365 Exchange Online, a good overview of their migration from Exchange. Lots of...
2015-07-14
949 reads
Today is the last day to submit your name as a candidate for the NomCom. If you’re a PASS member...
2015-07-14
528 reads
I recently read PASS and Business Analytics: A Winning Combination on the PASS blog and it reminded me that I’ve been...
2015-07-08
580 reads
I’ve been hosting this blog on Azure for a while, running WordPress on top of MySQL. Works fine, gives me...
2015-07-02
523 reads
Ran into this issue today. A subscription that had been working failed. Looking at it in the RS portal it...
2015-07-01
9,774 reads
I’m trying to evolve a little in the topics I pick and how I write them to push the boundaries...
2015-06-29
855 reads
PASS just posted Changes to the 2015 PASS Board Elections based on feedback from the 2014 NomCom. I was part of that...
2015-06-25
442 reads
I’m a little late posting this, Culture Clashes and Arrogance was featured on June 17, 2015. One of my favorites...
2015-06-25
501 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