Preparing a Technical Session Part 2: Coming up with a Title
Earlier this month I began a blog series on preparing to do a technical talk. In that first post I...
2014-12-31
1,318 reads
Earlier this month I began a blog series on preparing to do a technical talk. In that first post I...
2014-12-31
1,318 reads
If you’re currently an Office 365 customer that is using Power BI sites then you probably found an early Christmas...
2014-12-19
1,238 reads
So you’ve decided or perhaps were told to do a technical presentation. If this is something that’s new for you...
2014-12-12 (first published: 2014-12-02)
5,390 reads
So you’ve decided or perhaps were told to do a technical presentation. If this is something that’s new for you...
2014-12-02
826 reads
I’m finally completely recovered from a great week in Seattle last week for PASS Summit. Now that it’s back to...
2014-11-11
935 reads
I’m finally completely recovered from a great week in Seattle last week for PASS Summit. Now that it’s back to...
2014-11-11
1,190 reads
Subscriptions are a great feature in Reporting Services that will run a report unattended and deliver it to users either...
2014-10-20 (first published: 2014-10-13)
8,068 reads
Subscriptions are a great feature in Reporting Services that will run a report unattended and deliver it to users either...
2014-10-13
1,071 reads
If you’ve have used or even just seen a demo of Power BI Q&A you’ve likely seen there’s great potential...
2014-10-08 (first published: 2014-10-01)
7,556 reads
If you’ve have used or even just seen a demo of Power BI Q&A you’ve likely seen there’s great potential...
2014-10-01
860 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