简体   繁体   中英

Running SSIS job using Windows task scheduler

I am new to the world of ETL. I recently started using SSIS and I have come across couple of questions on this.

1.Can we run a SSIS Package using windows task scheduler?
2. If the above answer is yes,I don't have the SSMS installed on my machine. Can a SSIS package run in the absence of SSMS?(I do have
Visual studio and SQL server data tools installed)
3. Can a SSIS Package run in the absence of Visual studio and SQL Server Data Tools.Say for example, I create a SSIS package and then
remove Visual studio and SQL server data tools from my machine. Will
the Task scheduler still be able to run the SSIS package?

Thank you in advance.

You can run SSIS job from command prompt through DTEXEC utility check this query

dtexec /f /set \\package.variables[Variable]; value

Example:- dtexec /f E:\\test_package\\test_package\\Package.dtsx /set \\package.variables[id];1

Reference:- Methods to execute SSIS Package

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM