Viewing 15 posts - 136 through 150 (of 698 total)
The best way to go about these situations is to first try the query without the variable. Then, if it works, substitute the variable in.
From what you've said, it sounds...
January 16, 2012 at 8:16 am
I'm guessing PowerPivot is something which is not in SSIS 2005?
January 11, 2012 at 3:25 pm
Yeah - not to mention other things like, in some cases I need to have a single worksheet contain multiple result sets within it - which means that I have...
January 11, 2012 at 3:03 pm
Never seen that error. Did you try using the ExcelFilePath property instead of the ConnectionString property? And also setting DelayValidation to true?
January 11, 2012 at 1:57 pm
I could be wrong, but I *think* that SSIS has its own login which needs the access, since it is the one handling the moving of the files.
January 9, 2012 at 9:46 am
It won't. Unless you have a linked server that is.
SSIS is not very good at doing updates. You could do it using a SQL Command, but that would involve updates...
January 9, 2012 at 9:32 am
If they are different servers it gets a bit tricker yeah. Then SSIS might be the better option - should be able to work with what I've given you though.
January 9, 2012 at 9:23 am
Gonna have to agree with the others - just don't use the global temp table. Use a real table, and run a TRUNCATE TABLE at the start of your task...
January 9, 2012 at 8:42 am
Not too difficult to do in SSIS, though I don't see why you would - it's easier to write a SQL stored proc to do it.
Using SSIS, first put an...
January 9, 2012 at 8:41 am
What I'd recommend is you send *all* the records to one table first, then once they're in that table, you can run a stored proc from within SQL to send...
January 9, 2012 at 8:34 am
SSIS is pretty crummy at doing updates, because it is intended to be used in a pipelined fashion.
What I'd recommend you do is the following:
Step 1: Use an Execute SQL...
January 6, 2012 at 8:55 am
Another perhaps clunky solution:
Have two completely separate DTSX files. One will have your excel source with all columns, and the other has your excel source with the missing column.
Have your...
December 30, 2011 at 9:33 am
This might be something you've already tried, but if not, why don't you try this:
Have two data flow tasks. One uses the excel source that has all the columns, and...
December 30, 2011 at 8:40 am
Do the tables / etc change with the different connection strings, or is it just that the parent will be deciding which amongst a series of replicated servers is being...
December 27, 2011 at 9:15 am
Try this:
(DT_DBTIMESTAMP) (SUBSTRING([Column 5], 1, 4) + "-" + SUBSTRING([Column 5], 5, 2) + "-" + SUBSTRING([Column 5], 7, 2) + " " + SUBSTRING([Column 5], 9, 2) + ":"...
December 27, 2011 at 9:13 am
Viewing 15 posts - 136 through 150 (of 698 total)