Meet, Greet, & Remember?
How many of you have said, “I have a real hard time remembering names” or “Excuse me, I know we...
2009-07-21
413 reads
How many of you have said, “I have a real hard time remembering names” or “Excuse me, I know we...
2009-07-21
413 reads
Time for another update on all things PASS. I’ve been struggling to find time for PASS activities and having to...
2009-07-21
600 reads
In IT security, we spend so much time trying to protect servers and computers on the wire (or on wireless)...
2009-07-21
1,252 reads
Out of all the problems you can have with SQL Server troubleshooting connectivity issues can be the most challenging. When...
2009-07-20
6,521 reads
I bet most of you have at least one customer loyalty card in your wallet or on your keyring, one...
2009-07-20
719 reads
When you start applying for jobs, and face competition from other candidates, who do you think gets the interview? Is...
2009-07-20
1,584 reads
Do you want to get a glimpse into how the Microsoft Field Engineers would go about troubleshooting performance issues on...
2009-07-20
780 reads
Have you ever seen this error when you have setup database mail:
The mail could not be sent to the recipients...
2009-07-20
429 reads
I just learned about a Connect item entered on Friday: https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=475337 . Here's the description in the item. Please invoke the...
2009-07-20
448 reads
Like many SQL Server (and other technology) people, I utilize several social networking vehicles to stay in touch with others...
2009-07-20
1,856 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