Viewing 10 posts - 1 through 10 (of 10 total)
I didn't know 24 hour old data in SSAS was real time analytics. That's going on the ol' resume!
July 23, 2016 at 9:53 pm
The restrictions are there to make it easy to compile into straightforward (read "fast") code. When you're writing these, just imagine how you would write the same thing in...
May 20, 2016 at 11:07 am
In addition to learning a little and putting it into immediate practice, which most everyone has mentioned, I find it useful to draw on the same point from as many...
April 8, 2016 at 8:23 am
I've often found it helpful to stage every column as a character type. Invariably something ends up where it shouldn't. For a small number of columns that can...
April 20, 2015 at 12:00 am
I agree with what you have here, Miles. When I looked into the concept of using queueing for a problem I wanted to solve, it sounded like a perfect...
January 16, 2013 at 10:16 am
Found this thread trolling for answers to the same question. Here's what works for me.
exec msdb.dbo.sp_send_dbmail
@profile_name = 'YOUR_PROFILE',
@Recipients= 'YOUR_EMAIL',
@Subject= 'sample message with attached query',
@Body= 'sample...
April 26, 2011 at 11:56 am
Thank you for giving this problem a try. It seems you're the only one who wanted to give this a try. However, this is exactly the solution I...
October 4, 2010 at 1:19 pm
if(1=0 and 1=null)
Does ternary logic have the same rule that allows me to to say that the above is logically equivalent to
if 1!=0 or 1!=null
If so, I'm back where I...
September 2, 2010 at 10:58 am
This next table summarizes the effect of NULLs in AND expressions:
AND True False NULL
True True False NULL
False False False False
NULL NULL False NULL
This second table summarizes the...
September 1, 2010 at 4:56 pm
Viewing 10 posts - 1 through 10 (of 10 total)