Miscellaneous Reading for July 2013
Must read blog: Sacha Chua. Lots of info on going solo, being productive, sketch noting.Related, if you’re trying to manage...
2013-07-30
1,122 reads
Must read blog: Sacha Chua. Lots of info on going solo, being productive, sketch noting.Related, if you’re trying to manage...
2013-07-30
1,122 reads
Based on a bit of luck/happenstance I’ve been able to stretch my summer vacation to two months. I had planned...
2013-07-29
1,278 reads
PASS is accepting candidate applications for the 2013 election through August 7th, 2013. Later this year we – the PASS membership...
2013-07-29
635 reads
First time event in Cocoa Beach went really well!
Speaker dinner well attended Friday night at Florida’s SeafoodQuite a few...
2013-07-29
758 reads
I’m leaving mid-morning today to drive to Cocoa with my family for a beach weekend and SQLSaturday #231. I’ll be...
2013-07-26
704 reads
I’ll try to write more about these over the next couple months, but I wanted to write down a quick...
2013-07-26
1,128 reads
I’m not terribly good at putting at least one image in every post. The images I do use are either...
2013-07-25
939 reads
Most of you probably get that there will always be a bottleneck in a system. You implement a fix in...
2013-07-24
579 reads
I learned something from you – that was something someone said to me at the end of a recent consulting engagement....
2013-07-23
752 reads
I don’t bowl often, maybe once a year at best. It’s a fun way to spend a couple hours – I...
2013-07-22
702 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