Viewing 15 posts - 346 through 360 (of 699 total)
To expand a bit on point 2, SSIS variables don't have a "null" value. They always have to have an actual value. If your package configuration doesn't specify one, then...
September 7, 2011 at 8:48 am
sorry - just re-read your previous post and noticed the comment regarding SQL Server 2008 R2.
Are you trying to copy a data flow task from SSIS 2005 to SSIS 2008?...
September 6, 2011 at 10:34 am
Yeah that would probably be the easiest bet - AFAIK you can execute a perl file by just using the Execute Process task and passing the file name of the...
September 6, 2011 at 7:31 am
Hi there,
For your first step, you have a few options you can use.
The "easiest" option, IE the one that will require the least time up-front, would be to just make...
September 6, 2011 at 7:27 am
I regularly copy-paste objects from SSIS projects, and haven't had any problems with it. Best way is to just test it and see what happens.
September 6, 2011 at 6:03 am
Does your full table contain more than just the four serverID's you specified in your example, for the UNION showplan?
This is just a theory, but maybe the reason why it...
September 2, 2011 at 4:12 pm
Yeah I've gotta say, I'm surprised your second query performs worse than the first - it's basically doing the same thing, except without the UNION's.
I'd like to see the execution...
September 2, 2011 at 3:47 pm
Thanks for posting all the CREATE TABLE statements, but as a general rule of thumb, you should make sure that your code can run as-is in a standalone environment. I...
September 2, 2011 at 2:08 pm
Short answer, "yes with a but"
You can copy any task from a package to another package. The problem comes when that task is using variables or connections that exist in...
September 2, 2011 at 1:59 pm
just out of curiousity Chris, I assume there's no real difference between writing the query like that, or like "with ___ AS (blah) SELECT FROM cte WHERE count = 1"
September 2, 2011 at 1:50 pm
Correct on both counts.
September 2, 2011 at 12:41 pm
Easiest solution would be to just do the joins on the database level.
When you're doing a merge join in SSIS, it has to do all the manipulations in memory, which...
September 1, 2011 at 12:16 pm
That would only be the case if the database was actually located on Server 2.
If I understand the OP correctly, there's a whole bunch of servers and machines which are...
August 31, 2011 at 12:11 pm
Actually after thinking about it more, I think I have a better idea.
Rather than having the UPDATE trigger actually do all the work in updating the replicated tables, how about...
August 30, 2011 at 10:19 am
Could it be that your system doesn't have enough memory to handle the task you're asking of it?
I know that when you're using a standard lookup, it will crash if...
August 30, 2011 at 9:39 am
Viewing 15 posts - 346 through 360 (of 699 total)