Hide the Ribbon in Power View
There may come a day when you want to embed a Power View report into a PerformancePoint dashboard or a...
2013-06-07
719 reads
There may come a day when you want to embed a Power View report into a PerformancePoint dashboard or a...
2013-06-07
719 reads
Recently while doing an installation of SharePoint 2010 on a Windows Server 2008 R2 server with a SQL Server 2012...
2013-05-29
1,184 reads
Development and demo environments can be hard to come by. Over the course of this series you will learn how...
2013-05-21
2,285 reads
Have you ever wanted to browse your SharePoint 2010 site in Windows Explorer? If you are in SharePoint 2007 please...
2013-05-14
882 reads
It was another great year at SQL Saturday Jacksonville. For the last several years I have been lucky enough to...
2013-05-07
477 reads
Anyone who knows me will see the title of this post and tell you I’m about to trash the Surface,...
2013-03-22
672 reads
I recently had an interesting situation where an SSIS package was scheduled to run at 1 AM but failed with...
2013-03-18 (first published: 2013-03-12)
5,064 reads
Recently while changing some production security around on a new server I needed to modify the SQL Server Analysis Services...
2013-03-05
1,235 reads
The SQL Server PDW (Parallel Data Warehouse) is a beast of a machine. Spreading workload across multiple nodes inside the...
2012-09-11
1,515 reads
NOTE: Always create a backup before doing any type of Windows registry modifications!!!!
With the full public release of Windows 8...
2012-09-04
1,467 reads
By HeyMo0sh
Over time, I’ve realised that one of the hardest parts of cloud management isn’t...
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
Comments posted to this topic are about the item Fun with JSON II
Comments posted to this topic are about the item Changing Data Types
Comments posted to this topic are about the item Answering Questions On Dropped Columns
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 t1.[key] AS row,
t2.*
FROM OPENJSON(
(
SELECT t.* FROM #test_data AS t FOR JSON PATH
)
) t1
CROSS APPLY OPENJSON(t1.value) t2; See possible answers