How Good is Good Enough?
I was running some tests on some purchased data this morning, and was getting a little perturbed because I was...
2011-06-16
612 reads
I was running some tests on some purchased data this morning, and was getting a little perturbed because I was...
2011-06-16
612 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
659 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
752 reads
I just noticed three very recent new TPC-E Benchmark Submissions that I thought were quite interesting. As I have written...
2011-06-15
941 reads
The official launch of SQL Saturday #89 was June 8th. Within the first week of the launch we have registered...
2011-06-15
509 reads
I submitted three sessions to the 2011 Summit for consideration and I heard today that two of them were accepted,...
2011-06-15
731 reads
In case you hadn’t heard, the 2012 SQL Rally will be in Dallas. Andy Warren talks about the process for...
2011-06-15
936 reads
Microsoft has just released a new SSIS transform, called the SSIS Balanced Data Distributor (BDD). You can download it here.
This...
2011-06-15
1,357 reads
This error , Cannot read the next data row for dataset Dataset1, is thrown for many reasons, at least I have seen...
2011-06-15
5,520 reads
From time to time I get asked about how PASS Board members are compensated, so I thought it would make...
2011-06-15
694 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