Link to home
Start Free TrialLog in
Avatar of JackW9653
JackW9653Flag for United States of America

asked on

DTS Packages and SQL Server 2005 Express Version

Hello Experts,

Can anyone tell me how to open an existing SQL 2000 DTS package in SQL Express 2005? If I can't open them can I at least run them against an instance?

Thanks,

Jack
ASKER CERTIFIED SOLUTION
Avatar of nito8300
nito8300
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of JackW9653

ASKER

Thanks for the information Nito. I have 8 SQL 2000 DTS packages that handle importing and exporting to our core application from an external application. We have been requiring customers to purchase a server with Small Biz Server 2003 Premium (with SQL Server 2000) and a workstation that access the SQL table for reporting functions. We were hopeful that for some of our smaller customers that we could cut the hardware costs in half by putting everything on a high powered XP Pro workstation and use SQL Express. But if I understand what I read in the article that cant be done with the 2005 Express Edition. The DTS packages do not need be designed in Express, but they need to be bundled with the database. Any ideas?  
You could develop stored procedures to do your export/import of the data. Not sure how complex your DTS's are but if you're doing simple copy data from you table to the other you can easily run do the same steps with SQL

INSERT INTO server.database.dbo.table1
SELECT FIELD1, FIELD2, FIELD3
FROM server1.database.dbo.table1

Hope this helps.
The DTS are fairly complex, the data is coming from a remote UNIX via FTP in various comma delimited files and delineated with the 5th character in the filename. Application logic determines which package is called and then an acknowledgement file is sent back to the UNIX and log files are created. All of this is bundled into the DTS package and some triggers on the tables. So rewriting all of that is pretty much out of the question. Thanks for all of your help. Do you know if DTS packages get saved with a database during a backup?