Networking Dinner at the 2016 PASS Summit
Steve Jones & I are organizing our 7th annual networking dinner on Monday night, October 24th in Seattle. We’re changing the...
2016-10-06
499 reads
Steve Jones & I are organizing our 7th annual networking dinner on Monday night, October 24th in Seattle. We’re changing the...
2016-10-06
499 reads
We’ve been monitoring the weather all week, thinking that today was the day we had to decide. We didn’t want...
2016-10-05
421 reads
2016-09-02
1,216 reads
Today we have a guest editorial from Andy Warren as Steve is on vacation. Andy talks about a trip to Microsoft for the SQL Server 2016 launch.
2016-08-12
149 reads
Returning to the post about Making SQSaturday Sustainable (see also a follow post about addressing concerns) it mentioned two topics...
2016-08-05 (first published: 2016-07-30)
1,474 reads
This past week I attended a one hour facilitated group session that was a continuation of the Strengthfinders assessment. One...
2016-08-02
440 reads
In a post titled The Future of the BA Community PASS announced that there would be no Business Analytics conference...
2016-07-30
824 reads
Last week PASS published some new guidance for SQLSaturday that sets a 600 mile rule (has since been updated, still...
2016-07-28
1,335 reads
Last week Karla Landrum announced that she will be leaving her position as Community Evangelist later this year after five...
2016-07-22 (first published: 2016-07-17)
1,628 reads
Really late linking to it, Should I Stay or Go is about being more assertive about making the decision to...
2016-07-18
351 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