October 14, 2003 at 9:44 am
I have created several DTS Packages on my local server that I need to send to a client of mine.
I have no connection to their server. Is there a way to Save DTS Packages, zip them, send them, and then restore them on a remote server?
If no, what are my options. Any help would be greatly appreciated.
tygun
October 14, 2003 at 10:51 am
Save them as a "Structured Storage file", which will be a .dts file on your local drive. Zip them, email them, whatever. On the remote machine, right click the "Data Transformation Services" folder in EM and select the "Open Package" item. Browse to your files.
Steve Jones
http://www.sqlservercentral.com/columnists/sjones
The Best of SQL Server Central.com 2002 - http://www.sqlservercentral.com/bestof/
October 15, 2003 at 11:30 am
Connections, file paths, exchange profiles, etc. in your package will probably not be valid at the destination. If you know what they should be, disconnected edit can be used to set them, even if the values are not valid for you.
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
December 12, 2003 at 1:44 am
Maybe you can also use a tool "DTS Backup" and take a backup and ask your clients to use the same to restore it...Its a pretty good tool.
Cheers!
Arvind
Arvind
December 18, 2003 at 7:27 am
Hi rstone,
wadda you mean with
quote:
disconnected edit
? The "structured storage file" doesn't work for me, because I've to change some settings before importing the DTS Package on the other site.
I've exported the package as Visual Basic File. How can I (re-) import such a file?
December 18, 2003 at 10:57 am
The second to last menu item in the "Package" menu is "Disconnect Edit...". It lets you edit various properties of connections, tasks, and work flow. I sometimes use it to rename a connection name. It can be used to set values that are valid, but the interface chokes on (e.g., parameters in a query not first in the batch).
Perhaps a dynamic properties task would be better for what you need. An "ini" file can be used to set properties.
I'm not aware of any way to re-import a VB program as a dts package.
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
December 18, 2003 at 3:12 pm
Look for the line
goPackage.SaveToSQLServer
in the VB file. Check Books Online for the full syntax. Be aware that you'll lose the layout of the tasks and any text annotations.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
--------------------
Colt 45 - the original point and click interface
December 18, 2003 at 3:56 pm
quote:
Look for the linegoPackage.SaveToSQLServerin the VB file. Check Books Online for the full syntax. Be aware that you'll lose the layout of the tasks and any text annotations.
Thanks. I would have never thought to use VB for this. It would not be that difficult to add an UI to set the properties prior to saving or running the package.
RandyHelpdesk: Perhaps Im not the only one that does not know what you are doing. 😉
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply