NodeXL – Accessible Network Graph Analysis, part 2
This is the second blog post in the series dedicated to the Network Graph Analysis Tool – NodeXL.
If you are interested,...
2014-05-26
288 reads
This is the second blog post in the series dedicated to the Network Graph Analysis Tool – NodeXL.
If you are interested,...
2014-05-26
288 reads
Data Quality Services in SQL Server is a component that is based around the concept of knowledge-driven quality.
Here comes a...
2014-05-26
197 reads
This is the first blog post in a series on one of the most awesome free analytical tools that is...
2014-05-25
254 reads
It is with a great pleasure that I am happy to share that today I have received news of being...
2014-05-22
153 reads
Update: There is a new 1.7 Version of Google Analytics Source for SSIS
This post is a continuation of the SSIS...
2014-05-22
421 reads
Update: There is a new 1.7 Version of Google Analytics Source for SSIS
In the modern age of the technology, almost...
2014-05-20
3,377 reads
These are my impressions from the PASS Business Analytics Conference 2014 in San José, California.
The first part of this series...
2014-05-19
335 reads
PASS Business Analytics Conference is not a new kid on the block anymore – happening for the second year in a...
2014-05-18
251 reads
The latest book that I finished reading was The Tipping Point, written by the Malcolm Gladwell. I would recommend this...
2014-05-16
185 reads
Every IT person is more than introduced to the problems of integration – in the ideal perfect world we could join...
2014-05-02
199 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