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 |
|
dhsieh
Starting Member
3 Posts |
Posted - 2004-08-24 : 14:33:01
|
| Does anyone know how to write multiple DTS sources in the ActiveX script such as:DTSDestination("Balance").Value = DTSSource1("Balance").ValueDTSDestination("Customer").Value = DTSSource2("Customer").Value |
|
|
timmy
Master Smack Fu Yak Hacker
1242 Posts |
Posted - 2004-08-24 : 19:19:23
|
| AFAIK the DTS transform data task uses one source and one destination. However, nothing's stopping you from reading from another source using VBScript - you can open/read/write recordsets and text files - just as you can with VB. |
 |
|
|
|
|
|