Viewing 15 posts - 226 through 240 (of 1,033 total)
Blah, what haven't you written?
Apparently I've had too many bad things taught to me.
I could swear that I've had performance differences between them, but that would have been at least...
August 22, 2012 at 1:46 pm
GilaMonster (8/22/2012)
did I miss one that compared EXISTS/NOT EXISTS vs IN/NOT IN?
How would I compare things that do the complete opposite to each other?
EXISTS vs IN
NOT EXISTS vs NOT IN
Not...
August 22, 2012 at 12:54 pm
GilaMonster (8/22/2012)
mtassin (8/22/2012)
The above could instead be constructed as a JOIN then, which generally performs better than using the IN operator.
No it doesn't.
http://sqlinthewild.co.za/index.php/2010/01/12/in-vs-inner-join/
General conclusion: In is a very slight...
August 22, 2012 at 12:30 pm
jshahan (8/22/2012)
if @ProviderCount >0
set @SqlString3 = @SqlString3 + N' and dbo.Enrollment.ProviderKey in (select id from #Provider)'
Above is an example of how we typically use dynamic SQL. I'm not an...
August 22, 2012 at 11:49 am
a2zwd (8/22/2012)
I am retrieving just MonthYear, TotalSales from the query.
I want to show MonthYear on X-axis and TotalSales on Y-axis. I dragged the columns(MonthYear in CategoryGroup and TotalSales...
August 22, 2012 at 9:53 am
I've done too much with Kerberos....I was glad that I remembered this.
Kerberos authentication is my preference because once it works, SQL authentication stops being a "why the hell can't it...
August 22, 2012 at 9:51 am
There were 0 files in the directory. Existing files were set to true.
August 22, 2012 at 9:28 am
I've just run into one thing with it... I figure I'll ask you before I go to Darren.
I left a process with the filewatcher watching a remote share
\\server\share
We copied 2000+...
August 22, 2012 at 9:08 am
(Bob Brown) (8/21/2012)
Try this one: SELECT 1+'130'+'120'+1. It comes up 252! Implicit conversion are very dangerous.
I would expect it to.
1 + '130' = 131 ('130' converted to...
August 21, 2012 at 9:41 am
Thanks,
The Konesans' task is just what I needed.
Normally I'm pretty nervous about 3rd party plugins for SSIS, but this is the right tool for the right task in this...
August 21, 2012 at 7:42 am
I'm working with this.... I have a question
So I'm trying to watch for new files... when I see one I kick into a For Each Loop Container that processes as...
August 17, 2012 at 2:15 pm
Hugo Kornelis (8/16/2012)
sestell1 (8/16/2012)
A good question. This is a drawback to using table variables for temporary storage that you need to remember to work around.
Actually, this is not a...
August 16, 2012 at 7:31 am
I'm in the boat with Anthony here.
Not to mention if you're log shipping, that the database has to be in Standby mode, and will kick the users out every time...
August 14, 2012 at 6:53 am
Viewing 15 posts - 226 through 240 (of 1,033 total)