Mini-Me
This Friday Steve Jones asks if you build your own mini-me's to help you manage your database systems.
2008-11-19
86 reads
This Friday Steve Jones asks if you build your own mini-me's to help you manage your database systems.
2008-11-19
86 reads
While most DBAs might never encounter the legal aspects of their professional, Phil Factor brings to light a few things that you might want to be aware of in these litigious times.
2008-11-19
1,177 reads
As data professionals we need to be sure that we can present back the data we receive. Perhaps other people should embrace this mantra in other lines of work.
2008-11-18
89 reads
Is Open Source something you should examine with the economy diving down? Steve Jones talks about a few of the issues.
2008-11-17
876 reads
With people becoming smarter about technology, does it make sense for them to choose their own computer? Steve Jones thinks so.
2008-11-16
796 reads
Employers say they're looking for more ethics and morals in IT for 2009. Steve Jones hopes it's true.
2008-11-16
1,016 reads
We all deal with inefficiencies at work, but how efficient are we ourselves? Steve Jones takes a poll this Friday.
2008-11-13
147 reads
Twitter is one of those interesting Web 2.0 ideas that is hard to analyze. Is it valuable? Steve Jones might have an idea for how it could be used by DBAs.
2008-11-12
810 reads
There are any number of small, annoying or tedious things in SQL Server and Steve Jones makes a case for getting them fixed.
2008-11-11
1,148 reads
Are DBAs worth more to a company than other types of IT employees? Steve Jones has some thoughts about the salary ranges for DBAs today.
2008-11-10
893 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