Comments on Pro Full-Text Search in SQL 2008 by Michael Coles
Apress sent me a free review copy, so I took a quick look through it at lunch. I've used full...
2009-01-15
607 reads
Apress sent me a free review copy, so I took a quick look through it at lunch. I've used full...
2009-01-15
607 reads
The 2009 devLINK Technical Conference will be held in Nashville, TN, August 13-15, 2009. This three-day conference provides technical content...
2009-01-15
478 reads
I was browsing through the new titles that are on Safari and saw some planning guides around Windows Server 2008...
2009-01-15
822 reads
It is strange how people react in different circumstances. Yesterday while going through the forums, there was an interesting post....
2009-01-15
454 reads
Yesterday I participated in my first BI SIG live meeting. This special interest group is led by Amy Lewis who...
2009-01-15
674 reads
If not, you should. Because autoplay being on means any time a removable data device, such as a USB stick,...
2009-01-15
752 reads
It seems like the benefits of being involved in PASS just never stopped. If you didn’t see the PASS newsletter...
2009-01-15
579 reads
Over the last six months or so, Pepsi has been running a PepsiStuff promotion on many of their products. They...
2009-01-15
651 reads
It's been about two weeks since I posted PASS Update #1, so time for another update on my activities as...
2009-01-14
728 reads
If you couldn’t make it to the 2008 PASS Community Summit in Seattle, WA last fall, perhaps you can attend...
2009-01-14
675 reads
I’m excited to announce the release of a new open-source project that fully automates...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
By Steve Jones
I have said and written this many times: Redgate Software is the type of...
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers