Building an API
Is it better to build an API into your code and allow someone to "plug in" or provide them with source code? Steve Jones thinks the former is better and gives you a few reasons why.
2009-08-04
227 reads
Is it better to build an API into your code and allow someone to "plug in" or provide them with source code? Steve Jones thinks the former is better and gives you a few reasons why.
2009-08-04
227 reads
Is software engineering dead? Some well respected software developers have stated that, and one says we should be craftsman, not engineers.
2009-08-03
158 reads
Does too much uptime mean that you might be at risk for downtime? Steve Jones examines this idea in today's editorial.
2009-08-03
109 reads
For this Friday's poll, Steve Jones talks about free training events and what their value is to you.
2009-07-31
125 reads
Becoming a more productive employee should be a goal for most people. It can also greatly increase the enjoyment you get from your career. Steve Jones gives you some ideas that might help you.
2009-07-30
108 reads
Bill Nicolich raises questions about the chairs we sit in all day as technology professionals.
2009-07-29
123 reads
More and more people are looking at virtual servers, but it's not as simple as just installing the software. Steve Jones has a few comments about virtual database servers and what you can do for a successful project.
2009-07-28
631 reads
Brad reflects on the characters of the DBAs he's met in his life, and suggests a common thread running through them all.
2009-07-27
255 reads
Steve Jones is more willing to ask for changes in software than the real world. Is that a good thing or not? Read on to find out.
2009-07-23
75 reads
Gordon Bell works for Microsoft Research and always asks Steve Ballmer for a database. What's wrong with SQL Server?
2009-07-22
138 reads
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
Quite the title, so let me set the stage first. You have an Azure...
hi everyone I am not sure how to write the query that will produce...
Comments posted to this topic are about the item Rollback vs. Roll Forward
Comments posted to this topic are about the item Foreign Keys - Foes or...
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