PowerPivot - Diagram View
The new “Denali” PowerPivot has a lot of fanatic new additions that I’ve really been looking forward to.Many of my...
2011-07-21
2,646 reads
The new “Denali” PowerPivot has a lot of fanatic new additions that I’ve really been looking forward to.Many of my...
2011-07-21
2,646 reads
For those of you in the Tallahassee, FL area on August 9th at 6:00 pm I will be speaking virtually for...
2011-07-21
768 reads
There are a lot of fantastic new features in the latest CTP 3 release of PowerPivot, which you can download...
2011-07-20
2,510 reads
Tonight I took my first crack at getting SQL Server Denali up and running on my machine.From what I had...
2011-07-20
1,412 reads
Yesterday I was thrilled to find out that my session "Common Analysis Services Design Mistakes and How to Avoid Them"...
2011-06-16
689 reads
For many Analysis Services developers building dimensions with many attributes and hierarchies is something that comes as second nature to...
2011-06-13
5,883 reads
Wednesday I will be presenting for the PASS BI/DW group a session on Data Mining in Excel. This is a...
2011-05-24
1,194 reads
Yesterday was the first day of the SQL Rally conference in Orlando, FL.It was a great first day because I...
2011-05-12
821 reads
Imagine you have spent the last 9 months developing a sales Data Warehouse and an Analysis Services cube.Your end users...
2011-04-25
4,277 reads
Often when building dimensions there is a need to order you dimension attributes by something other than the NameColumn or...
2011-04-19
4,134 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
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