SQL Server on RDS
Amazon now offers SQL Server 2008 R2 in their RDS service. It's an easy way to get working with SQL Server with a minimal investment.
2012-05-09
294 reads
Amazon now offers SQL Server 2008 R2 in their RDS service. It's an easy way to get working with SQL Server with a minimal investment.
2012-05-09
294 reads
An outage at SQLServerCentral reminded Steve Jones that it's not "if" a disaster will occur, but "when" it will occur that should have you preparing for a disaster at some point in the future.
2012-05-08
116 reads
This month the topic is hosted by Chris Shaw, and his topic is ethics.
The blog party is the second Tuesday...
2012-05-08
1,060 reads
A post more for me than for anyone else, since I’ll look for something in the default trace and I...
2012-05-07
15,642 reads
Security is becoming more of an issue for mobile devices as we store and access more information on them all the time.
2012-05-07
102 reads
Steve Jones talks about security, and the developer's role in ensuring secure code.
2012-05-07
341 reads
It was a little over a year ago that I stood on stage at the Rocky Mountain Tech Trifecta and...
2012-05-04
1,214 reads
This Friday Steve Jones is looking to see how you might like to improve your educational materials. With the success of our Stairway Series, we are looking to find better ways to teach people about SQL Server.
2012-05-04
320 reads
Steve Jones talks about XML and how it will be more and more important for DBAs to understand this in the future.
2012-05-03
721 reads
Update: This is confirmed by Snopes.
A NYC Taxi driver wrote:
I arrived at the address and honked the horn. After waiting...
2012-05-03
2,910 reads
By Brian Kelley
I will be leading an in-person Certified Information Systems Auditor (CISA) exam prep class...
EightKB is back again for 2026! The biggest online SQL Server internals conference is...
By HeyMo0sh
Working in DevOps long enough teaches you two universal truths: That’s exactly why I...
Hi all, I just started using VS Code to work with DB projects. I...
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
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