A Week of Books - Part 3
I'm still finishing up two books that I'll mention today. Most non-technical books I read straight through, anything technical/learning based...
2008-12-17
541 reads
I'm still finishing up two books that I'll mention today. Most non-technical books I read straight through, anything technical/learning based...
2008-12-17
541 reads
Magazines today instead of books, but hopefully you'll count that as close enough to my theme of the week. I...
2008-12-17
540 reads
Triggers are supposed to fire for every update, but in this video we see how you can bypass a trigger for an update.
2008-12-16
4,403 reads
I've been catching up on reading over the last month and I feel like taking a break from things technical/community/etc...
2008-12-15
657 reads
I'm just finishing up Boards At Work which talks about how a good board of directors can make a big...
2008-12-15
570 reads
Just as I did last year I'm posting my evaluation scores for review. I co-presented with Steve Jones a session...
2008-12-15
804 reads
Ah, if you're reading this aren't you the curious one! I ran across the link below a while back and...
2008-12-11
641 reads
One of the things I'm not fond of is self-deprecation. Smacking yourself on the forehead when you screw up a...
2008-12-10
529 reads
It's fun to just sit and talk with people, never know what you'll learn or be forced to rethink based...
2008-12-09
732 reads
Managing by the numbers often gets a bad name among employees because it can lead to a lot of gaming...
2008-12-08
655 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