A Lovely Handbag
I don't mean to comlpain, and I certainly don't need any more bags, but when I checked in Monday night...
2008-11-18
646 reads
I don't mean to comlpain, and I certainly don't need any more bags, but when I checked in Monday night...
2008-11-18
646 reads
How many mirrrored databases can I have on a server?
10 mirrored databases per server is the recommendation for a 32...
2008-11-18
6,427 reads
Speaker: Paul Shearer
Midlands PASS Chapter - December 4, 2008 Meeting
The Midlands PASS chapter will hold our normally scheduled meeting on Thursday,...
2008-11-18
573 reads
2008-11-18
647 reads
I endorsed Andy Warren for the board the other day, and I'll stand by that. I'm biased, so if you're...
2008-11-18
1,255 reads
I got the email with a Zoomerang survey to vote for the PASS board. All are excellent candidates, but ultimately,...
2008-11-18
940 reads
OK, I'm biased. I'll admit it and you have every right to discount my endorsement, but I'll make the case...
2008-11-17
710 reads
Fairly easy day, up at 5 am for an 8:15 am flight to Seattle via Detroit, arrived about 2:30 pm...
2008-11-17
532 reads
More updates from the nominating committee:
"As a PASS-slated candidate, we would like to promote you and your vision and experience...
2008-11-16
503 reads
This is what I provided to the nominating committee today. I think I could have worked on this for weeks...
2008-11-16
1,418 reads
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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