Your Recovery Time
Disaster recovery is one of those situations that we plan for and hope we never experience. Are you prepared?
2019-01-25
49 reads
Disaster recovery is one of those situations that we plan for and hope we never experience. Are you prepared?
2019-01-25
49 reads
The RDBMS works great for many situations, but is it ever fast enough to meet all your needs?
2019-01-24
100 reads
Azure SQL Data Warehouse gets some improvements, and Steve has a few comments.
2019-01-23
72 reads
2019-01-22
84 reads
Do you consider multi-skills useful; or just one with mastery in it?
2019-01-21
145 reads
2019-01-21
125 reads
Having a good process for managing security is important, but how many of us enforce that?
2023-10-25 (first published: 2019-01-18)
425 reads
2019-01-17
67 reads
2019-01-16
147 reads
Being effective is important to Steve. Today he talks about the things you might consider when trying to determine if your group is being effective.
2019-01-15
57 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