Insufficient Space for a Side by Side Restore - What Do You Do?
I was recently working with a student in a one on one format and one the scenarios he wanted to...
2008-08-28
1,424 reads
I was recently working with a student in a one on one format and one the scenarios he wanted to...
2008-08-28
1,424 reads
SQL Server makes it very easy for anyone to create a database. However it's worth spending a few minutes thinking about how you plan a database and SQL Server trainer Andy Warren brings us some thoughts on the subject.
2008-08-27
8,241 reads
The Jacksonville SQL Server Users Group (www.jssug.com) is hosting a SQL 2008 launch event on Friday, Sep 12, 2008 in downtown...
2008-08-27
1,370 reads
Slightly off topic today.
It's fair to say I'm not a great traveler. Waiting for planes, dealing with the hassles of...
2008-08-26
1,532 reads
I've used Quicken for a long time now and it's the center of how I manage finances at home. There...
2008-08-25
1,366 reads
One of the things I teach in our admin course is that it's not enough to just be the gatekeeper/central...
2008-08-24
1,442 reads
As I write this a tropical storm is passing over Orlando and has turned out to be milder than expected...
2008-08-21
1,400 reads
Registration has been open for only a few weeks and we've got 110 registered so far, a nice start! We...
2008-08-20
1,455 reads
I was visiting with a client recently when they asked me to come take a look at an incident in...
2008-08-20
1,368 reads
Actually it was subset of the group, but Kathi & Julie from the St Louis SQL Server User Group did a...
2008-08-19
1,413 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