vCentre Useful Queries: Part I
After posting on twitter last week that I needed something to write a blog post about my good friend Christian...
2011-06-14
852 reads
After posting on twitter last week that I needed something to write a blog post about my good friend Christian...
2011-06-14
852 reads
When bulding solid T-SQL solutions, it is often necessary to implement some level of error handling. One of the most...
2011-06-14
1,256 reads
/*
When you are having to extract just part of a string in TSQL, there are a number of techniques you...
2011-06-14
2,230 reads
Bluntly put, this is something that you always want to be taking advantage of.
As a Database Administrator I’m always on...
2011-06-13
659 reads
Well it’s been an exciting couple of weeks leading up to this course. We have tweaked what we could in...
2011-06-13
631 reads
I am very exicted to be speaking at the San Antonio PASS chapter SALSSA! It’s been way to long and...
2011-06-13
594 reads
For many Analysis Services developers building dimensions with many attributes and hierarchies is something that comes as second nature to...
2011-06-13
5,892 reads
A Fuzzy Lookup Task in SSIS that I was working on was bombing out, and I had a heck of...
2011-06-13
1,681 reads
Note: This is a good, bad, and ugly post. We took some chances, got some things right, got more than...
2011-06-13
991 reads
In working on my Preparation for Disaster presentation and doing research, one of the questions that came up early for...
2011-06-13
1,494 reads
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...
My mugI grew up surrounded by coffee farms in Guatemala and somehow spent most...
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