What a day to start Blogging
I have been thinking of writting a blog for the past 6 months but never had time or could I...
2009-01-13
433 reads
I have been thinking of writting a blog for the past 6 months but never had time or could I...
2009-01-13
433 reads
I'm a technology guy, but one lesson I've learned is that not all solutions can be solved by throwing technology...
2009-01-12
712 reads
When I was in graduate school I wanted an internship for the summer to get some experience and get ready...
2009-01-12
759 reads
I've mentioned before that I was on Twitter and I know that for some the question is still out on...
2009-01-12
909 reads
I decided to attend to see how the group was doing and learn a little more about Dot Net Nuke...
2009-01-11
627 reads
I don’t do resolutions - they’re cliché, overdone, and rarely stick. However, I’m a believer in setting goals and periodic progress...
2009-01-09
1,043 reads
This came up on Twitter today. I have a search set for "SQL Server" and it pulled up someone who...
2009-01-09
946 reads
I grew up watching the syndicated version of Star Trek every evening as a kid, 12-14 and dreamed of being...
2009-01-09
731 reads
Looks like the Windows 7 beta download has been delayed while Microsoft adds additional infrastructure support. A little disappointing but I...
2009-01-09
630 reads
First saw this because Jason Massietwittered about it. But apparently there are enough bits of the .NET Framework in R2...
2009-01-09
1,258 reads
By Vinay Thakur
Continuing from Day 4 where we learned Encoder, Decoder, and Attention Mechanism, today we...
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...
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