RIP, Robert Davis
A sad day for me.
A Memorial and Grief fund has been set up, if you’d like to contribute.
2018-04-05
449 reads
A sad day for me.
A Memorial and Grief fund has been set up, if you’d like to contribute.
2018-04-05
449 reads
I’m giving a webinar today, April 5th, at 3 PM Eastern, on using Extended Events to audit your SQL Servers....
2018-04-05
330 reads
SQL Server Database is an advance relational database management system, which is widely used by business professionals. But one of the serious issue one faces is SQL Server Database...
2018-04-04
13 reads
SQL Server Database is an advance relational database management system, which is widely used by business professionals. But one of...
2018-04-04
680 reads
As a SQL Server pro, I spend most of my productive time in the SQL Server Management Studio (SSMS). I...
2018-04-04 (first published: 2018-03-27)
2,957 reads
I am excited to announce that I have been selected to speak at Music City Tech held at Vanderbilt University...
2018-04-04
274 reads
Welcome to a new series that Manuel Quintana [Blog | Twitter] and I are starting where we will cover some of...
2018-04-04
437 reads
I will be presenting twice at SQLSaturday #710 in Edmonton, on 5 May 2018. You can join me for two...
2018-04-04
281 reads
There has been talk of a dark theme for SSMS for years. Does it exist, will it exist? Well, the...
2018-04-04
466 reads
On our managed servers we run a job each day to check that either a FULL or DIFF has run...
2018-04-04
678 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