The New Path To MCM
Microsoft has announced changes to the MCM program. This page shows all the ways that you can become an MCM...
2010-11-12
1,333 reads
Microsoft has announced changes to the MCM program. This page shows all the ways that you can become an MCM...
2010-11-12
1,333 reads
I recently had to track down a rogue process that was failing to log in on one of my servers....
2010-11-12
885 reads
Quick recap of yesterday afternoon: blur! I know I did stuff, but the pace is brisk and I’m just keeping...
2010-11-12
547 reads
Currently, none of the existing Data Flow sources allow you to source variables. Once again in my quest for performance, I look to keep as much data as possible...
2010-11-12
13 reads
Currently, none of the existing Data Flow sources allow you to source
variables. Once again in my quest for performance, I look to keep as much
data as possible in memory....
2010-11-12
1,227 reads
Currently, none of the existing Data Flow sources allow you to source variables. Once again in my quest for performance,...
2010-11-12
819 reads
Tuesday
SQL Lunch - Get a Lever and Pick Any Turtle: Lifting with Metadata - Cade Roux
Pragmatic Works - SSIS Dataflow - Designing for Performance...
2010-11-12
799 reads
The votes have all been tabulated and during PASS this week the top pre conference seminars were announced for SQL Rally.Thankfully...
2010-11-12
510 reads
This is a great sign. I see if every time I go to Brother’s BBQ in Denver and it never...
2010-11-12
770 reads
We are slowly getting to the end of this book by Alex Kuznetsov (Blog). You can find more on this series by looking here. We are now discussing chapter 8...
2010-11-11
5 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