Old and Wise
I'm not sure that I'm wise, but I do feel old quite often. I noticed that after my talk at...
2008-11-06
455 reads
I'm not sure that I'm wise, but I do feel old quite often. I noticed that after my talk at...
2008-11-06
455 reads
I attended the Business of Software a couple months ago and really enjoyed the conference. I wrote a series of...
2008-11-05
313 reads
DevTeach is offering 136 sessions, including 36 on SQL Server, 17 on Agile Development, 17 on Software Architecture, and 57...
2008-11-05
386 reads
I've written my first tip for MSSQLTips.com:
How to setup and use a SQL Server alias
It's a pretty simple thing to...
2008-11-05
901 reads
Yesterday I posted about deciding to throw in my hat as far as running for the board, today I'll add...
2008-11-05
441 reads
In my previous posts The Wise Old Man Part 1, The Wise Old Man Part 2 and The Wise Old...
2008-11-05
820 reads
With a large election year in the US (President + all the other races), I've been more interested than in some...
2008-11-04
392 reads
A couple weeks ago I wrote about trying to decide whether to run for the PASS board. I talked about...
2008-11-04
535 reads
I'm not trying to talk politics here, but I don't want to be so politically correct that I avoid important...
2008-11-03
452 reads
Microsoft has launched a new SQL Server 2008 marketing-related website at www.sqlserverenergy.com. It is available in 11 languages, and offers...
2008-11-03
848 reads
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)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
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