Return of Index Analysis Part 5
Let’s Anaylze An Index!Alright, up to the last of the changes I’ve made to the index analysis query that I...
2010-10-25
1,541 reads
Let’s Anaylze An Index!Alright, up to the last of the changes I’ve made to the index analysis query that I...
2010-10-25
1,541 reads
SQLSaturday #59 Interview Speaker Series #10 - with Thomas LaRock
Today, Monday, we pick up on our speaker interview series, with my...
2010-10-25
734 reads
I was asked to host a T-SQL Tuesday, and I accepted.
Once again, my fingers move a bit faster than...
2010-10-25
734 reads
Unless James Bond is in the picture, security is usually not a sexy topic. However, we all lament the lack...
2010-10-25
2,061 reads
Brian K. McDonald
SQLBIGeek
Twitter: @briankmcdonald
Welcome to the first of my “SQLBIGeek’s Function Friday” blog series. I understand that I am posting...
2010-10-24
1,421 reads
I had a new SSIS package that was ready to deploy to production. It was pulling data from Oracle and this was the first package being placed into production...
2010-10-24
24 reads
I had a new SSIS package that was ready to deploy to production. It was pulling data from Oracle and...
2010-10-24
12,210 reads
10/23/2010 Two more eligible developers and deserving projects have been selected. Any proposals submitted but not selected this time will be reconsidered at each upcoming award cycle. (Refer to...
2010-10-24
4 reads
10/23/2010 Two more eligible developers and deserving projects have been selected. Any proposals submitted but not selected this time will be reconsidered at each upcoming award cycle. (Refer to...
2010-10-24
7 reads
10/23/2010 Two more eligible developers and deserving projects have been selected. Any proposals submitted but not selected this time will...
2010-10-24
786 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