SQLSaturday#59 Update! - 3 weeks to go.....the after PASS East Coast Special!
Β SQLSaturday#59 Update!
Well, the event is now less than 3 weeks away (better finish my presentation π and there are 450+ attendees...
2010-11-01
564 reads
Β SQLSaturday#59 Update!
Well, the event is now less than 3 weeks away (better finish my presentation π and there are 450+ attendees...
2010-11-01
564 reads
Β
Sunday, October 31, 2010 is Halloween, and in the spirit of the holiday of ghosts, goblins, vampires, werewolves, witches and...
2010-10-29
2,409 reads
SQLSaturday #59 Speaker Interview #13 β with Mark Kromer
Today, coming in from Philadelphia, PA, we are talking with Mark Kromer, who...
2010-10-28
794 reads
Β SQLSaturday #59 - Speaker Interview Series # 12 - with Ayad Shammout
Today, we bring you the immaculate interview.Β If his sessions are as...
2010-10-27
853 reads
SQLSaturday #59 β Speaker Interview #11 with Steve SimonΒ
Queue the track.Β I canβt help hearing the theme song from Indiana Jones...
2010-10-26
718 reads
SQLSaturday #59Β Interview Speaker Series #10Β - with Thomas LaRock
Β
Today, Monday, we pick up on our speaker interview series, with my...
2010-10-25
730 reads
Β SQLSaturday #59 β Speaker Interview Series #9 β with Scott Weinstein
To round off the week, we bring you a short interview with...
2010-10-22
651 reads
Β Β Β Β Β SQLSaturday #59 β Speaker Interview Series #8 β with Aaron King.
We interrupt this blog post to bring you the latest SQLSaturday#59 News...
2010-10-21
1,111 reads
Β SQLSaturday #59 - Speaker Interview Series # 7 - with Hilary Cotter
He specializes in Microsoft Search solutions and high availability technologies like data...
2010-10-20
1,138 reads
SQLSaturday #59 β Speaker Interview Series #6 with Michael Coles
Today is Tuesday.Β And in honor of TSQL Tuesday, weβre bringing you...
2010-10-19
1,325 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