Viewing 15 posts - 1,426 through 1,440 (of 14,953 total)
IceDread (5/29/2012)
May 29, 2012 at 8:24 am
Lynn Pettis (5/25/2012)
Oliiii (5/25/2012)
I'm not talking about any failure or incident. I'm only talking about mistake.
When things go...
May 29, 2012 at 6:39 am
allmhuran (5/24/2012)
GSquared has provided a description that I expect applies to a heck of a lot of businesses out there, ie, "lots of different options from the list". I do...
May 29, 2012 at 6:36 am
The kind of "blame"/"responsibility" being proposed here is the healthy kind. Find out who messed up and why, and educate them on the right way to do it. ...
May 25, 2012 at 6:33 am
allmhuran (5/23/2012)
GSquared (5/23/2012)
I've got different solutions for different users.
Yes indeedy, your rundown mimics very closely the various options currently used where I work, and indeed at pretty much everywhere I've...
May 25, 2012 at 6:29 am
Start with MSDN.com. It's where Microsoft documents all the T-SQL commands, functions, syntax, etc. Same content as the installable "help file", called Books Online.
If you need the syntax...
May 24, 2012 at 12:16 pm
SQLKnowItAll (5/23/2012)
drew.georgopulos (5/23/2012)
My feeling is that GSquared's suggestion hits the...
May 23, 2012 at 1:54 pm
Start with an SQL task to generate a dataset with a list of the file names, and the range of records for each. Easy to do with a basic...
May 23, 2012 at 11:43 am
Possibilities that come to mind are a misdone in-place upgrade, or someone really badly messed up and restored the wrong backup of those. I'm not even sure that's possible,...
May 23, 2012 at 11:37 am
Oliiii (5/23/2012)
May 23, 2012 at 11:34 am
This is probaby the part that's killing your query speed:
AND (( A.CO_IN_ITEM_OPT = '00' AND ( B.BUSINESS_UNIT = A.BUSINESS_UNIT OR A.BUSINESS_UNIT = ''))
OR ( A.CO_IN_ITEM_OPT = '01' ...
May 23, 2012 at 11:24 am
I think part of the problem is that your query doesn't have a Case statement in it anywhere, and doesn't need one.
What you need is something like:
select *
from #temp
where (@isActive...
May 23, 2012 at 11:17 am
drew.georgopulos (5/23/2012)
May 23, 2012 at 11:10 am
Automation of my work is why I got into IT in the first place. Never yet worked my way out of a job. Don't think it'll happen any...
May 23, 2012 at 11:05 am
Viewing 15 posts - 1,426 through 1,440 (of 14,953 total)