﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Administering / SQL Server 2005  / Start SSIS package from a SQL Agent job / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Wed, 19 Jun 2013 06:48:51 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Start SSIS package from a SQL Agent job</title><link>http://www.sqlservercentral.com/Forums/Topic412290-146-1.aspx</link><description>Enabling xp_cmdshell just to execute the SSIS package? You already have the Integration Services Package step type in the agent job configuration. If you decide to call it from CMD anyway then you have "CMDExec" step type availabe in the job configuration.</description><pubDate>Fri, 16 Mar 2012 07:13:21 GMT</pubDate><dc:creator>Divine Flame</dc:creator></item><item><title>RE: Start SSIS package from a SQL Agent job</title><link>http://www.sqlservercentral.com/Forums/Topic412290-146-1.aspx</link><description>You could also call the SSIS package directly too if you wantedDECLARE  @sqlCmd VARCHAR(1250)	            -- call to ssis package	,@returnCode INT		            -- returncode from package execution	,@ssisPath     VARCHAR(1250)	- location of ssis packageSET @ssisPath = '\\server\ssis\mySSISPackage.dtsx'SELECT @sqlCmd = 'DTEXEC /F "' + @ssisPath + '"'		-- call ssis package and return resultEXEC   @returnCode=Master..xp_cmdshell @sqlCmd	SELECT @returnCode AS '@returnCode'</description><pubDate>Fri, 16 Mar 2012 06:56:32 GMT</pubDate><dc:creator>mark_copley</dc:creator></item><item><title>RE: Start SSIS package from a SQL Agent job</title><link>http://www.sqlservercentral.com/Forums/Topic412290-146-1.aspx</link><description>add a new job step. In the Type dropdown, select sql server integration services package. then you need to fill in the appropriate tabs. what you will fill in may vary greatly, so I can't really go into what you will need in there, but hopefully this gets you on your way.</description><pubDate>Thu, 18 Oct 2007 09:59:15 GMT</pubDate><dc:creator>Adam Angelini</dc:creator></item><item><title>Start SSIS package from a SQL Agent job</title><link>http://www.sqlservercentral.com/Forums/Topic412290-146-1.aspx</link><description>I have a SQL job that kicks off to populate some tables with test data. I also have an SSIS package that copies the data to another development SQL server called ScrapAllData_RePopulate.Within the SQL Agent job I want the final step to kick off my SSIS package. Can someone give an an example of how to do that?Thanks</description><pubDate>Thu, 18 Oct 2007 09:35:44 GMT</pubDate><dc:creator>Warren Peace</dc:creator></item></channel></rss>