DBAs – soon to disappear??
Heres a thought
With all the monitoring tools and performance gauging software available on the market these days, will there ever...
2010-05-07
595 reads
Heres a thought
With all the monitoring tools and performance gauging software available on the market these days, will there ever...
2010-05-07
595 reads
Log Shipping Issue (encountered by Abi Chapagai May 7th)
I had set up log shipping between two servers few weeks ago....
2010-05-07
7,603 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-05-06
576 reads
Every week I will scour the internet for useful SQL scripts and post my favorite on here.
This weeks comes from...
2010-04-23
392 reads
On April 21 Microsoft announced SQL Server 2008 R2 has been released to manufacturing.
The downloads on Technet/MSDN on May 3....
2010-04-22
403 reads
Found out this week – that we should be restarting this service at least once a week ! (thus allowing the CPU...
2010-04-20
379 reads
Compiled by Abi Chapagai (April 2010)
Implementation of High Availability depends in the need of the business. Each of the technologies...
2010-04-18
24,373 reads
Introduction
In any distributed environment, database synchronization between two different locations or different servers’ is very essential for mission critical applications....
2010-04-18
2,246 reads
SQL Server 2008 High Availability Solution: Log Shipping
In SQL Server, transaction log provides an ability to recover a database...
2010-03-19
1,697 reads
Should we as DBAs be worried that we will become surplus to requirements if Oracle continues to enhance its capabilities to deliver a self-managing...
2010-02-23
384 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