TechFuse Minnesota Follow Up
My Session: Using Azure SQL Database for Enterprise Needs
On 10/6/2015, I presented on Azure SQL Database at TechFuse Minnesota. Some...
2015-10-06
466 reads
My Session: Using Azure SQL Database for Enterprise Needs
On 10/6/2015, I presented on Azure SQL Database at TechFuse Minnesota. Some...
2015-10-06
466 reads
On Tuesday, September 15, I presented on this topic for Pragmatic Works. You can find that session here. This session...
2015-09-15
604 reads
With the rise of HDInsight and other Hadoop based tools, it is valuable to understand how Power BI can help...
2015-08-28
1,515 reads
With the rise of HDInsight and other Hadoop based tools, it is valuable to understand how Power BI can help...
2015-08-27
699 reads
As I noted in my first post, I am not a fan of scripting. In that post we set up...
2015-08-26
902 reads
As I noted in my previous post, I am not a fan of scripting. In that post we set up...
2015-09-04 (first published: 2015-08-25)
1,302 reads
Let me start by saying, I am not a fan of scripting. It definitely has its place and a lot...
2015-09-01 (first published: 2015-08-24)
1,453 reads
As I mentioned in my original post, Exploring Excel 2013 as Microsoft’s BI Client, I will be posting tips regularly...
2015-07-28 (first published: 2015-07-21)
2,421 reads
As I mentioned in my original post, Exploring Excel 2013 as Microsoft’s BI Client, I will be posting tips regularly...
2015-06-16
1,293 reads
Steve:
Happy Memorial Weekend everyone. This is a time to remember those who have gone before and in some cases have...
2015-05-22
432 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