How many environments?
This Friday Steve Jones looks at the setup for your software pipeline. He's wondering how complex it is with how many separated environments.
2015-08-14
149 reads
This Friday Steve Jones looks at the setup for your software pipeline. He's wondering how complex it is with how many separated environments.
2015-08-14
149 reads
The tally table is a valuable tool for a SQL Server developer, but how many of you understand how to create and use one?
2025-12-26 (first published: 2015-08-13)
808 reads
The business pressures can often change how we work, or even how we build our software. A few notes on Github from Steve Jones.
2019-09-10 (first published: 2015-08-12)
278 reads
When working on a new database, Steve Jones hesitates to make too many guesses, or at least, too many exact guesses.
2021-03-05 (first published: 2015-08-11)
214 reads
Are you brave enough to redeploy your applications from a VCS? Have you really captured all your code?
2015-08-10
89 reads
2015-08-10
123 reads
This week Steve Jones wants to know about your efforts to create bonds with co-workers and build a team. Does your company do anything to help facilitate this?
2015-08-07
112 reads
2015-08-06
252 reads
The cloud is always going to be a challenge for security, but is it harder or easier than on premises? Steve Jones has a few comments.
2015-08-04
142 reads
2015-08-03
245 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