SQL Connections
I’m flying off to the SQL Server Magazine Connections part of DevConnections in Las Vegas later this afternoon. I’m presenting...
2009-11-10
561 reads
I’m flying off to the SQL Server Magazine Connections part of DevConnections in Las Vegas later this afternoon. I’m presenting...
2009-11-10
561 reads
I made geek of the week. I’m sorry, but I’m excited by that. I’m very proud to be a geek....
2009-11-06
649 reads
The day started off with a mixed bag. First we had an honestly tearful farewell with Wayne Snyder saying goodbye to...
2009-11-06
1,534 reads
Day 2 of the Summit was extremely busy. I missed a breakfast on DMV’s that evidently was one of the...
2009-11-05
1,354 reads
Wow, the bloggers table is empty today!
Nice intro! Good photo’s. I love the Summit!
Bill Graziano is introducing Day 3. He...
2009-11-05
1,322 reads
Patrick Ortiz from Dell, the platinum sponsor for the PASS Summit.
The goal will be to discuss the Dell Microsoft Practice,...
2009-11-05
515 reads
Dr. David DeWitt
“I’m not a doctor.” This is going to be good. “From 1 to 1000 MIPS” He’s doing great....
2009-11-05
690 reads
YAAAAAH!
The PASS Summit is pretty amazing. Yesterday I sat through the key notes from Microsoft. I was at the bloggers...
2009-11-04
566 reads
Nice phot montage, included so many friends. I love PASS.
Rushab Mehta launching the Wednesday key note. Unfortunately, this is the...
2009-11-04
512 reads
Tom Casey of Microsoft on BI.
20% of people that are decision makers within organizations have the tools and information they...
2009-11-04
597 reads
Disclaimer: The following is built with Claude Code. Just need to justify my $100/mo...
By Brian Kelley
I developed these rules a while back, before COVID. I had a period of...
By Steve Jones
Someone asked why I would use TRY_PARSE after I posted a question at SQL...
I have a table that ends in ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]. I'm about to...
Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2
Comments posted to this topic are about the item Building Great Software
I have this data in the OrderHeader table in a SQL Server 2025 database (ordered by CustomerID ASC):
orderid orderdate customerid complete 3 2025-05-10 00:00:00.0002 1 21 2024-01-10 00:00:00.0003 1 15 2023-10-28 00:00:00.0004 1 13 2025-03-08 00:00:00.0006 1 11 2024-04-02 00:00:00.0007 1If I run this query, how many rows are returned?
SELECT * from dbo.OrderHeader where customerid between 3 and '6'See possible answers