Viewing 15 posts - 11,686 through 11,700 (of 13,838 total)
Yes exactly. Once you have that, you're in business.
Even if you just use Row_Number() to generate one on the fly ... (if you're not too fussy about which rows end...
December 3, 2010 at 4:37 am
If you have two data sets
Set 1
1, 2
3, 4
Set 2
a, b
c, d
and you want to combine them to give something like
1, 2, a, b
3, 4, c, d
you need to...
December 3, 2010 at 4:06 am
Or ...
Instead of using the tables as your sources, use a query which includes the join. Then your data source is ready to go - this will be faster than...
December 3, 2010 at 3:19 am
Feed the two sources into a Merge Join transformation and from there map to your destination table (I'm assuming that the two source tables can be joined, of course).
December 3, 2010 at 3:17 am
Hi Steve
It's easy - take a look here.
I am happy to have been of help - although, with hindsight, I feel that we should have got to this sooner 🙂
Phil
December 3, 2010 at 2:22 am
Sounds like you're well on the way to creating a script component to do the job.
I will write down my thoughts, just in case they include anything you haven't considered.
The...
December 3, 2010 at 1:19 am
Craig Farrell (12/2/2010)
LutzM (12/2/2010)
You'd basically use a script component after your data...
December 2, 2010 at 12:33 pm
Finally we are getting somewhere, I think.
For this task, forget the FST. You can delete the entire dataflow actually.
Just configure an Execute Process task on the Control Flow pane to...
December 2, 2010 at 8:55 am
I am afraid that you have not answered my question. Until you can tell me why you cannot use
move *.*
I am not going to post further.
December 2, 2010 at 8:32 am
Steve Hindle-535638 (12/2/2010)
December 2, 2010 at 8:20 am
I must be missing something. Why not use the wildcard option? Then you don't need to know the file names.
December 2, 2010 at 8:08 am
Steve Hindle-535638 (12/2/2010)
December 2, 2010 at 7:43 am
So do these variables merely contain folder paths and you want your task to loop round all files in <source_folder> and move them to <destination_folder>?
Or do the values of the...
December 2, 2010 at 7:29 am
This can definitely be done. What problem are you having?
December 2, 2010 at 7:08 am
I am also interested to know what will happen to this table in future. Will it be maintained incrementally (via appropriate UPDATEs and INSERTs) - in which case is this...
December 2, 2010 at 7:06 am
Viewing 15 posts - 11,686 through 11,700 (of 13,838 total)