The Release Schedule
Coordinating the release of software among all the groups involved can be quite a chore. Steve Jones comments on some of the challenges.
2008-09-18
239 reads
Coordinating the release of software among all the groups involved can be quite a chore. Steve Jones comments on some of the challenges.
2008-09-18
239 reads
Meaningful change often requires information collection, processing, retrieval and distribution. As database professionals, that's our bag. So what can we do to help things along?
2008-09-17
187 reads
A new data mining thrilled from Jeffrey Deaver has Steve Jones concerned about the centralization of data mining.
2008-09-16
179 reads
Steve Jones talks about a company looking to write all their stored procedures using the CLR in SQL Server. Is this a good idea?
2008-09-15
264 reads
A bug in the SQL Server 2008 upgrade process has Steve Jones questioning the coding practices at Microsoft.
2008-09-15
80 reads
2008-09-12
117 reads
Are database professionals liable for the security of their data? Should they be? Some think so, but Steve Jones thinks this is a bad idea and we might need protection as data professionals.
2008-09-11
85 reads
As database professionals, we know that we are responsible for the security and integrity of the data in our systems. But Steve Jones wonders if you know what legal responsibilities you might have.
2008-09-10
140 reads
Where is the dividing line between work time and personal time? As more and more employees get new phones, such as the Blackberry and iPhone, is the line becoming too blurred? Are there legal implications?
2013-06-24 (first published: 2008-09-09)
301 reads
More and more technology workers are being asked to sign non-compete agreements as a condition of their employment. But is that fair? Steve Jones has a few thoughts.
2008-09-08
165 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