Microsoft Releases SQL Server 2008 R2 RTM Cumulative Update 2
Microsoft has released SQL Server 2008 R2 RTM Cumulative Update 2 (CU2) today. It became available for download today, and...
2010-06-23
2,893 reads
Microsoft has released SQL Server 2008 R2 RTM Cumulative Update 2 (CU2) today. It became available for download today, and...
2010-06-23
2,893 reads
?? ????, ??????? ?? ??? ???? ????? ????? ????? ?? ? Database-?? ???????. ????? ??????? ?? ?????? ????? ????? ????????????...
2010-06-23
449 reads
My thanks to everyone in attendence and PASS AppDev VC for inviting me to speak. I’ll post a link to...
2010-06-23
984 reads
I saw Paul Kenny at the first Business of Software conference, and then had dinner with him, chatting about sales....
2010-06-23
786 reads
Andy Warren (blog| Twitter) sent me a link recently to a piece written by Kalen Delaney on the recent SQL...
2010-06-23
758 reads
Microsoft has released SQL Server 2008 R2 RTM Cumulative Update 2. It became available for download today, and you can...
2010-06-23
542 reads
As a part of a new book project, I am putting together a series of checklists that DBAs can use...
2010-06-23
1,216 reads
Life in the event leader fast lane, finally got the signs for our upcoming #49 here in Orlando. In past...
2010-06-23
543 reads
Using the command prompt for stopping and starting services is a very nice possibility and very fast! We know that...
2010-06-23
17,302 reads
Starting today, you can vote for the 2010 Exceptional DBA of the Year. All of the nominations have been reviewed...
2010-06-23
467 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