Viewing 9 posts - 46 through 54 (of 54 total)
September 26, 2017 at 10:55 am
Alan.B (1/4/2016)
--For me, that's been the 0.0001% exception.
Wow. That suggests you have written/tested 10,000...
June 2, 2017 at 10:55 am
Personally, I think the biggest reason to be excited about SQL Server on Linux is because it makes it viable for much of the Open Source world to start supporting...
March 2, 2017 at 11:13 am
I suspect that all of this comes out of a desire to make varchar and char equality testing easy. In the case of char equality testing, it seems obvious...
June 13, 2016 at 5:48 pm
The whole point of that "CarrierTrackingNumber = ISNULL(@Carrier, CarrierTrackingNumber)" predicate is to provide a way of turning off the filter by passing @Carrier a NULL. It's not to look...
October 9, 2015 at 4:35 pm
In response to the various references to using DISTINCT, keep in mind that DISTINCT will only save you if the values are duplicates. Once the values diverge, DISTINCT won't...
April 6, 2015 at 11:19 am
I scanned through the articles, but I may have missed it if someone discussed the "proper" way to do upserts with MERGE. I recommend http://www.made2mentor.com/2013/05/writing-t-sql-merge-statements-the-right-way/ , and...
January 9, 2015 at 10:23 am
Another hack I came up with involves using this approach to work with SELECT INTO #Temp (if you want to avoid the maintenance overhead of maintaining the CREATE TABLE statement...
December 16, 2014 at 2:05 pm
First off, I like this approach more than most of the alternatives, and the trick of using a query to interrogate the current status of FMTONLY is very clever. ...
December 15, 2014 at 4:50 pm
Viewing 9 posts - 46 through 54 (of 54 total)