Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
dupati1
Posting Yak Master
123 Posts |
Posted - 2006-01-18 : 15:53:13
|
I have two connection objects (source and destination), one transformation task (task1) that imports data from source to destination tables. And I have an ActiveX Script task.The ActiveX script task will loop through each table in a pre-defined list, and programatically remove all existing transformations in task1, and add the following ActiveX transformation to task1: Function Main() DTSDestination(1) = DTSSource(1) DTSDestination(2) = DTSSource(2) Main = DTSTransformStat_OK End FunctionEverything seems to work except that only the first row in each source table is imported. I want all rows in source table to be imported.Any SuggestionsThanks in advance |
|
|
|
|