Self Service SQL
Self service in IT is something Steve Jones likes, but it doesn't solve all problems, and might end up creating more issues.
2012-05-15
239 reads
Self service in IT is something Steve Jones likes, but it doesn't solve all problems, and might end up creating more issues.
2012-05-15
239 reads
Software engineering is seen as a dead end career choice, at least by some people. Steve Jones disagrees.
2012-05-14
436 reads
This week Steve Jones wants to know if you can find time for your professional development. Regularly improving your skills is an important part of your career in technology, and the poll this weeks asks what time you can make for improvement.
2012-05-11
221 reads
Steve Jones attended a day out from the Red Gate offices recently and he talks about the value of those experiences.
2012-05-10
168 reads
Amazon now offers SQL Server 2008 R2 in their RDS service. It's an easy way to get working with SQL Server with a minimal investment.
2012-05-09
294 reads
An outage at SQLServerCentral reminded Steve Jones that it's not "if" a disaster will occur, but "when" it will occur that should have you preparing for a disaster at some point in the future.
2012-05-08
116 reads
Steve Jones talks about security, and the developer's role in ensuring secure code.
2012-05-07
341 reads
Security is becoming more of an issue for mobile devices as we store and access more information on them all the time.
2012-05-07
101 reads
This Friday Steve Jones is looking to see how you might like to improve your educational materials. With the success of our Stairway Series, we are looking to find better ways to teach people about SQL Server.
2012-05-04
320 reads
Steve Jones talks about XML and how it will be more and more important for DBAs to understand this in the future.
2012-05-03
721 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