What Twitter Account Should SQLSaturday Use?
Last week PASS sent out an email saying that on June 15 all the tweets from @sqlsat would be changed...
2018-06-18
340 reads
Last week PASS sent out an email saying that on June 15 all the tweets from @sqlsat would be changed...
2018-06-18
340 reads
Late writing notes!
55 registered, 28 attended. Not bad, and about on track for expected 50% drop. Really, 28 made for...
2018-06-11
286 reads
Continuing the notes I wrote in Update #1, got a few more things done last week:
Received confirmation that the event...
2018-06-05
265 reads
We’ve just opened up registration and the call for speakers for our 12th SQLSaturday here in Orlando. We did #1...
2018-06-01
651 reads
Each year I try to capture a little more on how to set things up here in Orlando. Right now...
2018-05-29
306 reads
Last week Wendy Pastrick of the PASS Board posted PASS Election 2018 Timeline. It’s a good post for a few...
2018-05-16
313 reads
I just finished reading The Perfect Machine about the construction of the Hale Telescope at Mount Palomar (here is a pretty...
2018-05-08
260 reads
We’ve been on a break with regards to most things SQL here in Orlando, but we’re getting things going again...
2018-05-08
313 reads
Notes:
Great attendance, easily 400+Lunch was smooth this year due to changing to boxed lunchesRooms were in 2 different buildings. Sometimes...
2018-05-07
277 reads
Wanted to share a few things I came across recently with regards to benefits for veterans:
You can get a printed...
2018-04-25
347 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