Viewing 15 posts - 1 through 15 (of 600 total)
Not exactly. From the all executions report and other catalog messages I was able to determine that it was crashing on the data flow with all previous tasks ending successfully.
There...
November 6, 2019 at 2:24 pm
Steve Jones - SSC Editor (6/9/2015)
Comments posted to this topic are about the item <A HREF="/questions/T-SQL/126632/">Insert without a PK</A>
Yeah, um, i still may have been wrong, but if the question...
June 10, 2015 at 6:57 am
First, stupid question but why does your SQL have < 9 and your expression < 8?
Second, what happens when you replace the null function with a default string like "Null...
June 3, 2015 at 7:25 am
Yeah this sounds like more of a network set up issue than an SSIS issue.
Is there a reason you want to use the IP though? Its like the old...
May 19, 2015 at 11:49 am
Now 99% sure this is a windows update issue. Now just have to figure out which update.
Thanks, Microsoft!
May 12, 2015 at 1:09 pm
Seems to be causing an APPCRASH on Kernelbase.dll when run from VS
May 12, 2015 at 10:07 am
SELECT A. Date, MIN(B.DatePlus3BusinessDays) DatePlus3BusinessDays
FROM TableA A
LEFT JOIN (Select DateKey, LEAD(DateKey,3) OVER (PARTITION BY IsBusinessDay ORDER BY datekey) AS DatePlus3BusinessDays FROM Calendar WHERE IsBusinessDay = 1) B ON A.DateKey <=...
May 12, 2015 at 7:29 am
I mostly agree with the above.
You can't do an IN and LIKE with that Syntax.
If you could, it would not really be better than the OR solution, as neither is...
May 8, 2015 at 3:07 pm
Well he does reference T2 twice which is likely why he bothered (it is in the correlated subquery).
Then again, he probably shouldn't be doing it that way anyway (or at...
May 6, 2015 at 3:07 pm
EDIT: disregard original solution. This is actually far messier than I first thought.
It would really help if you gave us DDL for the tables, sample data and an explanation of...
May 6, 2015 at 1:54 pm
AER (5/6/2015)
By setting the TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; is this automatically sets all the joined tables to NOLOCK?
In effect, yes.
After you set the isolation level, a query will not...
May 6, 2015 at 1:45 pm
Yes, it does take extra CPU power.
Parsing a string according to some flexible rules depending on variable environment parameters is not a cheap process.
It's better to do it once and...
May 6, 2015 at 8:49 am
Sergiy (5/6/2015)
Hmmm... what does it take exactly?Too much of extra memory? Extra CPU power? I don't think so.
But parsing one string before dialling a number takes "Too much of extra...
May 6, 2015 at 8:09 am
Sergiy (5/6/2015)
1. Parse the entered string once when it's being saved into predefined components and store those components in the class.
2. Parse the entered string...
May 6, 2015 at 6:46 am
Sergiy (5/5/2015)
May 5, 2015 at 11:54 pm
Viewing 15 posts - 1 through 15 (of 600 total)