Business Intelligence Roles and Team Composition
On Business Intelligence projects of all sizes, the composition of the team is a crucial element for success. What is...
2014-06-17
468 reads
On Business Intelligence projects of all sizes, the composition of the team is a crucial element for success. What is...
2014-06-17
468 reads
I’ve created a simple query performance logging tool for Analysis Services, called the SSAS Performance Logger. The tool allows you...
2014-06-03
479 reads
Someone recently asked me through LinkedIn how much it would cost to implement a BI project with Microsoft tools. This...
2014-05-17
986 reads
Watch below for live updates during the conference Stay tuned and you’ll find out what’s going on during this week...
2014-05-07
452 reads
As I continue to explore the many facets of DAX functions, I’m finding more creative ways to add business value...
2014-04-20
887 reads
This fact is probably not documented very well but this is an important factor in SSRS visual report design… The...
2013-09-26
738 reads
This fact is probably not documented very well but this is an important factor in SSRS visual report design… The...
2013-09-26
369 reads
What I’m going to show you is not rocket science. This one gets filed under the category of “well, duh. ...
2013-08-01
795 reads
A client came to me with a challenge this week that, although simple in concept, posed an interesting challenge that...
2013-07-13
747 reads
Power BI: a new suite of Business Intelligence tools Over the past few months, teams at Microsoft have made several...
2013-07-09
724 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