SQLPASS Day 1: Keynote Live Blog
Day 1 Keynote Jumps the Shark with Tina Turner Impersonator
I’m live blogging the PASS keynote…it’s 8:38 local time.
You wouldn’t guess...
2010-11-09
765 reads
Day 1 Keynote Jumps the Shark with Tina Turner Impersonator
I’m live blogging the PASS keynote…it’s 8:38 local time.
You wouldn’t guess...
2010-11-09
765 reads
The last post dealt with checking CPU pressure using wait_stats DMV. But, to get a complete picture of CPU Pressure,...
2010-11-09
798 reads
I’m writing this on Tuesday morning, Monday was a blur. I awoke at 4 am, finally decided that sleep wasn’t...
2010-11-09
628 reads
My day started at 5:15 to get moving for the airport. Arrived right at 2 hours early to find that...
2010-11-09
538 reads
This week at the PASS Community Summit in Seattle, I’m delivering two full length sessions, one lightening session, and chairing...
2010-11-09
336 reads
Many information via Twitter, LinkedIN, forums, blogs, including also here in SSC, have announced about new incmoing version of the...
2010-11-09
883 reads
Apparently, when I posted this a few days ago, the Windows Live Writer plug-in that I used mangled the T-SQL...
2010-11-09
1,303 reads
I wrote the editorial asking what people would have been if they had been born 100 years earlier. It’s a...
2010-11-09
454 reads
It’s the first day of the PASS Summit 2010 and I”ll be live blogging the first keynote here. Click on...
2010-11-09
516 reads
The day 1 keynote was kicked off by a Tina Turner impersonator doing a rendition of “Simply the Best”. Rushabh...
2010-11-09
962 reads
By Brian Kelley
Fabiano Amorim has written an excellent article at Simple Talk on securing msdb. Here's...
By Steve Jones
This month we have a new host, which I am grateful for. So many...
I needed to do some research because there is more to #temp tables than...
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
Comments posted to this topic are about the item The Range of Customers
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