The Remote DBA
This Friday, Steve Jones asks if you're like to work remotely. With the trend moving this way, mostly for extra hours, maybe you'd like to move that way for most of your work time.
2016-07-15
202 reads
This Friday, Steve Jones asks if you're like to work remotely. With the trend moving this way, mostly for extra hours, maybe you'd like to move that way for most of your work time.
2016-07-15
202 reads
Steve Jones looks a little more closely at the Azure SQL Data Warehouse, perhaps a viable choice for many of us.
2020-10-21 (first published: 2016-07-14)
278 reads
MongoDB can lose some rows in queries run very close together. Is that bad? Steve Jones thinks so, though this doesn't mean you shouldn't use MongoDB or any other NoSQL database.
2016-07-13
117 reads
2016-07-12
205 reads
With many mobile phones containing malware, Steve Jones notes this could be a problem for data professionals.
2016-07-11
54 reads
Is the decision for a new database starting to switch from the default of on-premise to in the cloud? Steve Jones has a few thoughts on when we'll get there.
2020-11-06 (first published: 2016-07-11)
248 reads
A brief editorial on future database engines having built in intelligence.
2016-07-08
183 reads
There are times when you don't want to get exact mathematical calculations in data processing, and Steve Jones talks about one of them today.
2016-07-07
116 reads
Not more hacking, but rather a data error in some cars is disturbing to Steve Jones.
2016-07-05
127 reads
This week Steve Jones discusses artificial intelligence and one of the building blocks that will be needed: data.
2025-12-15 (first published: 2016-07-04)
190 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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