Stop and Start Services - SQL School Video
SQL School covers a basic topic this week. MVP Andy Warren shows the various ways to stop and start your services.
2009-07-30
5,190 reads
SQL School covers a basic topic this week. MVP Andy Warren shows the various ways to stop and start your services.
2009-07-30
5,190 reads
I was doing some maintenance on the SQLSaturday web site recently and one request kinda low on the list was...
2009-07-29
3,582 reads
I currently write the editorial for the PASS Connector which is published every two weeks as part of my role...
2009-07-28
1,440 reads
I ran across this a while back and it’s been on my ‘to blog about’ list for too long. Open...
2009-07-28
1,463 reads
Bill Graziano just made the announcement about the changes to the bylaws being published. No sweeping changes, for the most...
2009-07-28
560 reads
Just in case you don’t read the Connector today, here’s a link to an interview that PASS HQ did with...
2009-07-28
1,536 reads
I had hoped to announce this much sooner, sometimes the wheels turn slowly. But turn they do! We’re back at...
2009-07-28
1,450 reads
Steve Jones sent me this link on time management that discusses two things – getting ‘ambushed’ at the start of the...
2009-07-28
1,610 reads
Learn how you can configure your SQL Server instance using T-SQL code and sp_configure. MVP Andy Warren hosts this SQL School video.
2009-07-28
5,007 reads
2009-07-28
514 reads
By HeyMo0sh
Microsoft Fabric (not to be confused with the more general term “fabric” in DevOps)...
By James Serra
I’m honored to be hosting T-SQL Tuesday — edition #192. For those who may...
By Vinay Thakur
Continuing from Day 2 , we learned introduction on Generative AI and Agentic AI,...
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