Viewing 7 posts - 1 through 7 (of 7 total)
Nadrek (9/11/2014)
For cross-instance work, such as was presented...
September 11, 2014 at 1:42 pm
Yet another solution:
select distinct a.customerid
from #purchase a
inner join #purchase b on (a.customerid = b.customerid)
left join #purchase c on (a.customerid...
March 29, 2012 at 9:09 am
Thanks for the thoughts. I'm not dbo on msdb -- was mistaken.
Granting me explicit select rights on msdb fixed the problem. but that's not really an acceptable long term...
September 26, 2011 at 11:18 am
"Do It!" was what the execute button was labeled in Paradox.
You're bringing back bad memories!
June 3, 2011 at 11:35 am
I'm glad I'm not the only one to balk at this article.
I tend to use the 2 dimension approach: One for date only and another for time (when...
June 1, 2010 at 7:55 am
I'm the only database developer in my IT group and am regularly asked to do other sorts of IT work when the situation warrants: building a server, running cable,...
May 20, 2010 at 6:54 am
I had to smile when I read this post.
I've been working with databases for almost 20 years now and I was hoping to see some interesting approach to...
March 2, 2010 at 7:28 am
Viewing 7 posts - 1 through 7 (of 7 total)