CLR Stability
Recently I was at a UK user group meeting and Simon Sabin of SQL Skills presented a short “SQL Nugget”...
2010-05-04
646 reads
Recently I was at a UK user group meeting and Simon Sabin of SQL Skills presented a short “SQL Nugget”...
2010-05-04
646 reads
Introduction
Today’s post is a continuation in my on-going effort to document all of the scripts I use to manage my...
2010-05-04
413 reads
Post your responses to the above SQL Aloha Question of the Month in the comments section below (at www.bradmcgehee.com if...
2010-05-04
822 reads
SQLServerCentral.com, along with Red Gate Software, are glad to announce that nominations for the 2010 Exceptional DBA Awards are now...
2010-05-04
1,553 reads
Sometime soon we’ll start the process of the 2010 PASS election, with three seats on the Board of Directors being...
2010-05-04
402 reads
Since I am very interested in various PC-based hardware, and I make an effort to stay current on new developments,...
2010-05-04
859 reads
My first post in my replication series gave a brief overview of replication, before I dive into setting up and...
2010-05-04
7,244 reads
The free 24 Hours of PASS event will held May 19 & 20, and includes 24 different one hour presentations on...
2010-05-03
412 reads
A couple weeks ago I wrote about testing the LinkedIn polling capability, putting up this poll:
The response rate wasn’t great,...
2010-05-03
320 reads
The Issue
Being involved in PASS and the SQL Server community via blogging and Twitter, I get to see and hear...
2010-05-03
1,033 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