SQL Lunch Starting at 11:30 CST
If you are available for lunch today don’t forget to sign in and watch Thomas LeBlanc talk about Historical DMV...
2009-09-28
588 reads
If you are available for lunch today don’t forget to sign in and watch Thomas LeBlanc talk about Historical DMV...
2009-09-28
588 reads
Yesterday morning around 6AM, my Blackberry started going off. The subject line of every email was, “SQL Timeouts”. In the...
2009-09-25
8,058 reads
Date: 9/28/2009
Time: 11:30 AM
Meeting URL: https://www.livemeeting.com/cc/usergroups/join?id=F7DRFD&role=attend
Presenter: Thomas LeBlanc. Thomas is a Database Administrator for Amedisys, Inc in Baton Rouge, LA....
2009-09-25
583 reads
We have been working on the logo for a month now, but instead of making the final decision I have...
2009-09-23
772 reads
This past Friday I received a call from our systems team stating that they were running low on Disk Space...
2009-09-22
4,608 reads
After about 3 weeks of digging through .css files and html code I finally found the problem with the site. ...
2009-09-21
508 reads
The next SQL Lunch is scheduled for Monday, September 28. See below for details
Date: 9/28/2009
Time: 11:30 AM
Meeting URL: https://www.livemeeting.com/cc/usergroups/join?id=F7DRFD&role=attend
Presenter: Thomas...
2009-09-21
467 reads
I finally carved out some time in my day to try and get the August CTP of SQL Server 2008...
2009-09-18
1,359 reads
This weeks article is written by Kevin Kline, which is titled “Getting Up-to-Speed on the SQL Server Social Medial Scene”. ...
2009-09-16
934 reads
Join us today for a SQL Lunch
Date: 9/14/2009
Time: 11:30 AM
Reserve your seat:https://www1.gotomeeting.com/join/509742840
Presenter: Jeff Cole. Jeff has been designing and building...
2009-09-14
713 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