Upcoming Webinar - Introduction to Power BI
Come join me for this webinar on 3/13/2014 at 11:00 AM EST
Introduction to Power BI
The future of Business Intelligence has...
2014-02-28
1,353 reads
Come join me for this webinar on 3/13/2014 at 11:00 AM EST
Introduction to Power BI
The future of Business Intelligence has...
2014-02-28
1,353 reads
I hope you were able to attend my free webinar on Choosing the Right Analysis Services: MOLAP vs. Tabular on...
2014-02-17
1,737 reads
Today Microsoft has officially announced the release of Power BI for Office 365. You can read the Power BI teams...
2014-02-10
1,419 reads
Today is the final day for the Power BI Contest voting and I could use your help to move on...
2014-01-30
1,326 reads
You’ve watched my video (hopefully) now vote for it! In a previous post I wrote about my Power BI contest...
2014-01-20
703 reads
Today I submitted my Power BI contest entry and I’d love for you to take a look! Here’s a short...
2014-01-08
919 reads
With the recent updates to the Power BI preview and Q&A features added I thought I would do a quick...
2013-12-18
1,063 reads
One of the nice new features that was added to Power Query with the latest update in December is the...
2013-12-18 (first published: 2013-12-13)
2,680 reads
Just in time for Christmas the Microsoft product teams responsible for Power BI have a slew of amazing updates. The...
2013-12-11
918 reads
A little gem was included with the latest Office 365 update. After downloading and installing this update you will now find...
2013-11-18
935 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