Week in Review – August 7, 2010
This post is the first in a new weekly series meant to give my readers some insight into my week....
2010-08-19
642 reads
This post is the first in a new weekly series meant to give my readers some insight into my week....
2010-08-19
642 reads
Hey folks,
It’s white paper Wednesday and this week we’re looking at Bulk Report Generation using SSIS and SSRS 2008 R2...
2010-08-19
480 reads
Hey folks,
It’s white paper Wednesday and this week we’re looking at High Availability with SQL Server 2008 by Paul Randal(Blog)|(Twitter)....
2010-08-19
345 reads
Hey folks. I have yet to explore the world of Wolfram Alpha and still don’t claim to be an expert...
2010-08-19
513 reads
Good Morning,
We have an exciting SQL Lunch today. Don’t miss out on Jorge Segarra(Blog)|(Twitter) doing a session on Policy Based...
2010-08-17
186 reads
Hey there
I’m excited to be one of the speakers on this fall’s 24 Hours of PASS. Check
it out here...
2010-08-12
190 reads
There are so many great speakers on this fall’s 24 Hours of PASS.
It’s getting closer so make sure you get...
2010-08-12
190 reads
Good Morning,
We have an exciting SQL Lunch today. Don’t miss out on Jorge Segarra(Blog)|(Twitter) doing a session on Policy Based Management....
2010-08-12
247 reads
Good Morning,
We have some exciting SQL Lunches coming up. Don’t miss out on Jorge Segarra(Blog)|(Twitter) doing a session on Policy Based...
2010-08-12
265 reads
Hey folks,
It’s white paper Wednesday and this week we’re looking at Bulk Report Generation using SSIS and SSRS 2008 R2...
2010-08-12
232 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