Cannot create Cluster – the computer X is joined to a cluster
Recently attempting to install a new three node cluster I ran into a new issue. Once I was able to...
2013-08-28 (first published: 2013-08-21)
1,278 reads
Recently attempting to install a new three node cluster I ran into a new issue. Once I was able to...
2013-08-28 (first published: 2013-08-21)
1,278 reads
In April 0f 2012 I was fortunate enough to be asked to become Linchpin People LLC’s first ever TeamMate. (blog)....
2013-08-13
831 reads
PASS Summit 2013 will be my fifth Summit to attend. I wrote a blog post about how different my fourth...
2013-08-09
634 reads
I started this post over a year ago and have just now come back around to finish it. Over the...
2013-07-24
649 reads
I have been working on a project recently to collect system metrics of a SQL Server environment. One of the items...
2013-06-27
1,390 reads
Being a production DBA means having to quickly look at a SQL Server and diagnose issue with it. We know...
2013-03-08
4,245 reads
On Thursday March 14th (PI Day) in Duluth GA, Audrey Hammonds and Julie Smith will put on a spectacular SSIS training...
2013-02-12
574 reads
I have been working with a client recently who purchased a nice top of the line de-duplication backup device in...
2013-02-08
1,084 reads
I recieved an email today from my publisher Joes 2 Pros that my book was now available on Barnes and...
2013-02-05
533 reads
That latest installment of SQL Saturday Atlanta was just announced. On May 18th 2013 SQL Server experts from all over...
2013-02-04
636 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