Viewing 14 posts - 16 through 29 (of 29 total)
Does anyone know if the free ePub version been withdrawn or moved? The link appears to be broken.
July 4, 2012 at 3:57 am
Indeed. And depending on how you interpret "ensure the view returns the correct results", you may have to alter the view. The 'correct' results may be those which have no...
July 3, 2012 at 3:54 am
For those who encounter this in the future, a hotfix is available from Microsoft which addresses the connectivity issue. I have tested it and it works.
See FIX article http://support.microsoft.com/default.aspx?scid=kb;en-us;2717598. While...
June 19, 2012 at 8:24 am
As the predicate involves the same field there's no need for nested CASE statements; a single CASE statement will suffice. Moreover, it improves readability:
SELECT
PeriodKey,
...
June 15, 2012 at 3:55 am
Thanks to Wayne for an awesome article! And thanks others for great discussion.
There's one point that no one picked up that I find inaccurate:
Note that the estimated execution plan for...
June 8, 2012 at 3:59 am
Nice article!
Edit: Please ignore this post. One of those days...
---------------------------------------------------------------------------------------------
It's also interesting to note that ordinal positions returned by a CASE statement are not implicitly resolved to field objects. This...
April 26, 2012 at 5:27 am
Apart from rCTE's scaling linearly, this statement is not correct. Read Jeff's article. A table, however large or small, will always perform many times faster than a rCTE.
That's simply not...
March 13, 2012 at 9:17 am
Koen Verbeeck (3/13/2012)
andrew.diniz (3/13/2012)
Which table do you source your...
March 13, 2012 at 9:07 am
abhishekgupta109 (3/13/2012)
Interesting one....but why would you display a month name, if we do not have any data for it. (just for the sake of displaying a blank report.)
Why not? Many...
March 13, 2012 at 6:50 am
RonKyle (3/11/2012)
March 12, 2012 at 4:04 am
DBA-640728 (5/6/2009)
March 8, 2012 at 4:47 am
Now, if you toggle the default value of the property Delay Validation and set it to true, the validation will be delayed and the package will not be validated at...
March 8, 2012 at 4:18 am
To reserve/delete the http namespace you need local admin rights on the box.
See BoL: http://technet.microsoft.com/en-us/library/ms190614(SQL.90).aspx
August 25, 2011 at 2:54 am
In your article you write:
"You might be surprised to learn that changing the WHERE clause in the previous statement from "SpecialOfferID <> 1" to "SpecialOfferID = 2" will prevent...
February 22, 2011 at 5:09 am
Viewing 14 posts - 16 through 29 (of 29 total)