The Dark Side
Steve Jones talks a little about Oracle after speaking at an event devoted to that technology.
2013-02-25
211 reads
Steve Jones talks a little about Oracle after speaking at an event devoted to that technology.
2013-02-25
211 reads
This week Steve Jones reminisces about the first software he used. He asks you what inspired you to start working with computers.
2013-02-22
113 reads
There are any number of small, annoying or tedious things in SQL Server and Steve Jones makes a case for getting them fixed. Today's editorial was originally published on Nov 11, 2008. It is being re-run as Steve is out of town.
2013-02-21
153 reads
Things on the ranch inspire Steve Jones in the rest of his life. He's one you might not have thought about. Today's editorial was originally published on Nov 3, 2008. It is being re-run as Steve is out of town.
2013-02-20 (first published: 2008-11-03)
208 reads
It is late evening. Something is wrong with a database. You narrow down the possibilities, getting more frustrated and puzzled. Stay calm. Check the inputs systematically. No! The data going into that table is right, but when you then read it in the table, it's wrong. Why did I stop believing in the supernatural? Then it hits you. Every time it comes as a surprise. They're using triggers. (This editorial was originally published on Nov 10, 2008)
2013-02-19 (first published: 2008-11-10)
627 reads
Our desktop OSes have evolved to support group accounts, but much of the ecosystems around them do not and many mobile and tablet devices do not. Why don't they?
2013-02-13
88 reads
There are a lot of regulations around data in the medical field. Most of the exceed HIPAA, but end up causing confusion and problems. Steve Jones thinks simplication is important if our technology systems are to support future regulations.
2013-02-11
95 reads
This week Steve Jones notices some good advice from Brent Ozar and the fastest query in your database.
2013-02-11
225 reads
Steve Jones is up in the Redmond area at Microsoft's HQ looking for SQL Server developers. This editorial was originally published on April 17, 2008. It is being re-published as Steve is on holiday.
2013-02-08 (first published: 2008-04-17)
679 reads
IBM is sending a Watson supercomputer to college. We don't know what will happen with this experiment, but it is exciting for those of us looking forward to interacting more with computers in the future.
2013-02-07
105 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
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,...
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