Learn Better: Pause to Review More
If you want to learn better, pause more in your learning to intentionally review.
2026-01-26 (first published: 2026-01-13)
219 reads
If you want to learn better, pause more in your learning to intentionally review.
2026-01-26 (first published: 2026-01-13)
219 reads
2026-01-19 (first published: 2026-01-08)
222 reads
2026-01-14 (first published: 2026-01-05)
447 reads
Following the advice in Smart Brevity improves communication.
2026-01-06
15 reads
There's a great article from MIT Technology Review about resetting on the hype of AI. AI's current state is somewhere between the die hard evangelists and the doomsayers
2026-01-05 (first published: 2025-12-19)
371 reads
For a number of years I have subscribed to Randy Franklin Smith's Patch Tuesday newsletter. It tends to hit my inbox in the wee hours of Wednesday.
2025-12-31 (first published: 2025-12-10)
235 reads
In Parts 1-3, I covered how I prepare for a certification exam. In this last part, I'll talk about how I go about taking the exam.
2025-12-19 (first published: 2025-12-08)
416 reads
Every year, the South Carolina State Internal Auditors Association and the South Carolina Midlands ISACA Chapter partner together to put on a "CPE catchup" opportunity in December to provide...
2025-12-17
16 reads
In parallel with the presentation I gave at the PASS Data Community Summit on quantum computing's impact on data, I wrote an article specifically on impact with respect to...
2025-12-17 (first published: 2025-12-03)
233 reads
Even preparing for a class or seminar with set materials takes a lot of time and effort, more so when you build your own content. So why teach?
2025-12-05
13 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