I am looking for a way to execute an SSIS package as the next step in the SQL 2000 Agent, with the first step being replication. Can I reference dtexec.exe on the SSIS box to execute the package located in the file system?
Thanks
JWeil wrote:
... Can I reference dtexec.exe on the SSIS box to execute the package located in the file system?
Yes, should work. Agent in SQL 2000 has a limitation of just one proxy account, but if you are OK with this and the package can be run under this account, it should be fine.
|||Thanks.
Would I need to install anything on the SQL 2000 server or just reference the executable on the 2005 box?
|||SSIS should be installed on the machine where the package is run, you can't run it by pointing to dtexec on remote share.If you want to run the package on the same machine, where SQL 2000 is installed - install SSIS on this box.
If you want to run the package on another box where SQL 2005 is installed, you need some other way - e.g. create Agent job on SQL 2005 machine, invoke it remotely using Agent store procedures.
No comments:
Post a Comment