2014 Year In Review
As is our want, we must look back over the past year to see what happened. While I normally focus...
2015-01-11
617 reads
As is our want, we must look back over the past year to see what happened. While I normally focus...
2015-01-11
617 reads
Steve:
Check out a new blogger who is sharing secrets of the DBA world. In his first post, James shows us...
2014-12-09 (first published: 2014-12-03)
7,235 reads
This is the second deep dive into Power Testing ETL with Power BI. At this point, we have created the...
2014-11-13
1,166 reads
This blog post digs into the details of shaping the data with Power Query and Power Pivot in order to...
2014-11-19 (first published: 2014-11-12)
8,108 reads
This is a short blog series on using Power BI tools to support testing ETL processes. I have presented on...
2014-11-11
1,282 reads
As many of you know creating a SharePoint farm for testing can be a daunting task. I volunteered to help...
2014-10-16
786 reads
Part of the reason I have a blog is to document issues and resolutions I do not want to forget....
2014-10-15
539 reads
This is a temporary post that was not deleted. Please delete this manually. (e5bad5db-3b7d-4641-ba91-15ab900e8f70 – 3bfe001a-32de-4114-a6b4-4005b770f6d7)
2014-10-09
417 reads
In March of this year, I celebrated 10 years at Magenic. I blogged about it and called out values and...
2014-10-05
478 reads
This is a reprint with some revisions of a series I originally published on LessThanDot. You can find the links...
2014-07-24 (first published: 2014-07-17)
11,149 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