Batch Starting SQL Server Services
Many times when going from demo to development to client demo, we are always starting and stopping our SQL Server...
2010-02-27
1,555 reads
Many times when going from demo to development to client demo, we are always starting and stopping our SQL Server...
2010-02-27
1,555 reads
Hey gang !
I’m presenting today at 1pm on Zero to Cube in 60 minutes. We’re going to build an analysis...
2010-02-25
414 reads
Mr. Exceptional DBA is coming to our SQL Lunch. Patrick and I are excited to welcome Brad MCGehee to SQLLunch.com....
2010-02-24
427 reads
Hey Guys and Gals ! If you missed the webinars today, you missed a great show! Brian took us through the...
2010-02-24
473 reads
I’m presenting tomorrow on Zero to Cube in 60 minutes. This is an all Demo Session for work with cubes...
2010-02-24
416 reads
WOW – what a great turnout for our webinar series today. We had two sessions on Monday, looking for some great...
2010-02-23
584 reads
Recently I got a forum question that I thought would be a good blog entry for others to share.
The question...
2010-02-23
865 reads
Hot Off The Presses !
This isn’t like when you stood in line at the kissing booth in high school. SQL...
2010-02-23
498 reads
After yesterdays’ webinar, we got a lot of great feedback and questions. Once of the more common questions was around...
2010-02-23
454 reads
Once of the more common issues with working with data in a cube is that it does not always line...
2010-02-22
459 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