SSAS Maestro - Redmond Recap
Well today was the last day for a while I would be greeted by this sign:
It was a pretty exciting...
2011-06-18
850 reads
Well today was the last day for a while I would be greeted by this sign:
It was a pretty exciting...
2011-06-18
850 reads
Wow, what a day 2! This was our first day of lecture and it was a doozy. Stacia and I...
2011-06-14
860 reads
Well it’s been an exciting couple of weeks leading up to this course. We have tweaked what we could in...
2011-06-13
629 reads
One of the things I’m most proud of at our company is our team.You can see some of our team...
2011-02-11
707 reads
This next week I’m launching a series of posts centered around how you could be a part of the leading...
2011-02-10
616 reads
Ok so dynasty might be a bit strong, but check out this
newest volume from the folks @ Pragmatic Works. We...
2011-02-08
619 reads
And a bunch of other people who are really talented. My Zero to Cube session won the Summit Spotlight track...
2011-02-08
754 reads
Hey folks. I think we can all agree that there is some really quality training available for free on the...
2011-01-30
1,432 reads
Let me start of by saying I could have taken this picture in Florida. But I didn’t. I was in...
2011-01-30
1,315 reads
Hey Everyone – SQL Rally Voting opens today for the BI Track. There are lots of good sessions and at the...
2011-01-30
1,329 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