Viewing 15 posts - 12,391 through 12,405 (of 13,838 total)
Yuk, nasty. Easiest solution: change the field delimiter character to something else in the source data.
Otherwise (and this may not work perfectly), you could consider running a replace routine on...
November 24, 2009 at 9:53 am
Use a UNC path to get round the unmapped drive issue.
Ensure that the SQL Agent service user is a domain user which has at least read access to the folder...
November 24, 2009 at 5:51 am
I guess I'm just not understanding what you're trying to do.
What is the scope of your variable? It needs to be package level, not task level.
What is written to the...
November 21, 2009 at 12:44 am
I suggest that you change your approach slightly.
To get the variable evaluated as you want, you need to put the SQL into an expression (and the expression can use your...
November 20, 2009 at 3:22 pm
So the SQL command text is in a variable. How are you executing the command?
--edit
Are you executing the command through the use of an Expression?
November 20, 2009 at 2:53 pm
A single package will do the job for you. An EXECUTE SQL task can be used to run the sp's. Followed by one or more dataflow tasks to export the...
November 20, 2009 at 2:52 pm
Where are you entering the text of the SQL query containing the variable?
November 20, 2009 at 1:13 pm
stricknyn (11/20/2009)
Hi CrazyRoc,
...
Wow, you just got a cool new name! 😀
November 20, 2009 at 1:09 pm
Well done on solving that one by yourself. My solution would have worked too though - at no point did I mention deleting dups, all I said was 'processing' them,...
November 19, 2009 at 2:26 pm
A variant of the temp table method is probably still the easiest for you.
Bring all the data into a temp table, run a query to identify & process the dups...
November 19, 2009 at 11:40 am
I think you might need to MULTICAST to enable the 'reuse' you are after ...
November 19, 2009 at 8:45 am
This sounds like a pure SQL question, not SSIS? Anyhow, there is a way, using Common Table Expressions (or CTEs).
Using your example, it would be something like:
With Data as
(select productname,...
November 18, 2009 at 3:19 pm
omhoge (11/18/2009)
...wow, that was fun ...
I think I detect a hint of sarcasm 🙂
November 18, 2009 at 5:50 am
Good luck - please post back if you find the solution.
November 18, 2009 at 1:53 am
Viewing 15 posts - 12,391 through 12,405 (of 13,838 total)