Create SQL Server Agent jobs
This tutorial instructs how to create a SQL Server agent job to run the deployed SSIS Package from the tutorial SSIS Package Deployment. Follow the steps below:
Open SSMS, remember to start SQL Server Agent, then right click on Jobs -> New Job…
![](https://devspeedup.com/wp-content/uploads/2022/09/image.png)
Name the job “Export to Excel”
![](https://devspeedup.com/wp-content/uploads/2022/09/image-7-1024x992.png)
Click on Steps -> New
![](https://devspeedup.com/wp-content/uploads/2022/09/image-6-1024x988.png)
Set the step name, type, run as, server and package as shown on the screenshot above
Click on Configuration -> Advanced
![](https://devspeedup.com/wp-content/uploads/2022/09/image-8.png)
Check the 32-bit runtime checkbox and click on OK -> OK
Execute SQL Server Agent jobs
Under SQL Server Agent’s Jobs, right click on the “Export to Excel” job -> Start Job at Steps…
![](https://devspeedup.com/wp-content/uploads/2022/09/image-9.png)
The job should run successfully
![](https://devspeedup.com/wp-content/uploads/2022/09/image-11.png)
Congratulations!
Homework: can you self investigate and schedule the job to run automatically?