Software Assurance Cuts Back
Software Assurance from Microsoft is losing a benefit and Steve Jones comments.
2010-10-18
131 reads
Software Assurance from Microsoft is losing a benefit and Steve Jones comments.
2010-10-18
131 reads
This Friday Steve Jones asks about your spending on Disaster Recovery and is it in line with the risks involved.
2010-10-15
116 reads
In part two of his editorial series on moving to being a manager, Justin H-Davies talks about the challenges that are evolving of being a manager.
2010-10-14
174 reads
Did malware cause a plane crash? Not likely, but Steve Jones warns us it could and we need to be very security conscious when we have computers linked together in transportation systems.
2010-10-13
121 reads
Steve Jones talks about a recent survey that showed more people use GUIDs as primary keys than identity values.
2015-03-24 (first published: 2010-10-12)
674 reads
2010-10-11
112 reads
How does someone handle downtime in a small business? Steve Jones has some thoughts today based on a question sent in recently.
2010-10-11
173 reads
Today Steve Jones wraps up this week of editorial topics looking at women's issues with his own views on men and women in the workplace.
2010-10-08
173 reads
Today we have a guest editorial from MVP Jessica Moss that talks about the gender differences in the workplace, and how you can work to get beyond them.
2010-10-07
582 reads
Today we have a guest editorial from Jen McCown, one half of the Midnight DBAs. Jen wonders why we are still talking about women in technology? Women do the same jobs as men in this field.
2010-10-06
285 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