SQL Server 2012 Installation Guide
Reblogged from Basit's SQL Server Tips:
This article walks the user through installation of SQL Server 2012 on a Windows Server...
2012-11-11
1,272 reads
Reblogged from Basit's SQL Server Tips:
This article walks the user through installation of SQL Server 2012 on a Windows Server...
2012-11-11
1,272 reads
The database expansion costs money, not just software licenses. It costs money in maintenance and hardware, and also impacting businesses...
2012-11-11
1,081 reads
You probably heard about 7 Days To OLAP by Simon Doubt. It’s Simon’s experiment on learning OLAP during his stay...
2012-11-10
1,600 reads
There are countless ways to mix and match components in SSIS to simulate
what SQL Server does in a query. Here I am going to show you how to...
2012-11-10
50 reads
There are countless ways to mix and match components in SSIS to simulate what SQL Server does in a query....
2012-11-10
1,039 reads
There are countless ways to mix and match components in SSIS to simulate what SQL Server does in a query. Here I am going to show you how to...
2012-11-10
13 reads
Hey Friends,
Back with the topic: Claim Based Authentication. To get the over view of part 1 you can refer the...
2012-11-09
391 reads
How to open and view a deadlock .xdl file with SSMS ?
Solution 1 :
On the File menu in SQL Server...
2012-11-09
2,341 reads
Allen Kinsel will be leaving the Board of Directors this year after serving a two year term and Kendal is...
2012-11-09
1,045 reads
Late posting this, has been a busy week!
Started the day at Top Pot, meeting up with Jack Corbett and some...
2012-11-09
860 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