OT: Maximizing My Time, Using Technology
Well I've taken the plunge. I have finally broken down and decided to dictate blog post, articles, and other documents....
2009-11-30
1,552 reads
Well I've taken the plunge. I have finally broken down and decided to dictate blog post, articles, and other documents....
2009-11-30
1,552 reads
We often take the advice given to us on forums or in articles at face value. Even though the authors...
2009-11-27
3,278 reads
We often take the advice given to us on forums or in articles at face value. Even though the authors...
2009-11-20
4,230 reads
I’ve been dealing with change control and source code repositories for most of my professional career. While I’ve seen change...
2009-11-16
1,442 reads
As promised and update on what has happened so far. A correction needs to be made. the P800 is a...
2009-10-31
1,732 reads
I love visiting Seattle, even in November. Getting to catch up with old friends and meet new people is always...
2009-10-30
1,457 reads
I have had the pleasure of being a vendor, and technical support for both hardware and software products. I know...
2009-10-30
1,508 reads
This isn’t exactly related to SQL Server. I did effect my productivity. I am a monitor junkie. I love multi-monitor...
2009-10-21
870 reads
I’ll be on the Twitter Bingo card along with a lot of other great SQL Server folks at Pass! Quest...
2009-10-21
573 reads
In my last post The Basics of Spinning Disks we covered hard drives, the back bone of our IO system....
2009-10-18
1,135 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