Full-Text Search Enhancements in SQL Server Denali
Since Microsoft announced the existence of CTP1 of SQL Server Denali during Ted Kummert’s keynote address at PASS 2010 yesterday,...
2010-11-10
837 reads
Since Microsoft announced the existence of CTP1 of SQL Server Denali during Ted Kummert’s keynote address at PASS 2010 yesterday,...
2010-11-10
837 reads
It’s Day 2 of the PASS Summit and here we are again live blogging the event.
From the Summit site:
Today Tom...
2010-11-10
407 reads
I'm not one for automatically poo-pooing new ideas, new practices and new technology. Rather I like to take a measured...
2010-11-10
801 reads
Ever since I took myself voluntarily off company workstation support by installing Windows 7 on the corporate Dell E6400 laptop,...
2010-11-10
780 reads
This year, PASS is taking an extra step to help identify first time summit attendees. Most attendees are given ribbons...
2010-11-10
849 reads
New Version Sql Server “11? code name “Denali” CPT1 is ready to download here: http://msdn.microsoft.com/en-us/sqlserver/default.aspx Here are experts comment and...
2010-11-10
926 reads
The second day of the SQL PASS summit has already started in unique fashion. Today is #sqlkilt day, and there...
2010-11-10
1,057 reads
One of the small mysteries of the universe that I have been pondering lately is the fact that so many...
2010-11-10
422 reads
A few days ago I wrote about an election that was taking place (ok so it was a week ago at this point). That election was the SQLServerpedia Awards....
2010-11-10
7 reads
A few days ago I wrote about an election that was taking place (ok so it was a week ago...
2010-11-10
577 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