|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Tuesday, July 27, 2010 12:01 PM
Points: 12,
Visits: 48
|
|
I want to trigger SSIS package from SSRS after inputting some fields.
Thanks in Advance.
Thanks Surendra
|
|
|
|
|
Hall of Fame
       
Group: General Forum Members
Last Login: Yesterday @ 1:49 AM
Points: 3,123,
Visits: 4,310
|
|
One way would be to have a stored procedure that the SSRS report accesses. In the stored proc, you could include the instruction to execute the required package, using master.sys.xp_cmdshell. However, care must be exercised that no passwords are included in the command, as this is stored in plain text
____________________________________________ Space, the final frontier? not any more... All limits henceforth are self-imposed. “libera tute vulgaris ex”
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Tuesday, May 14, 2013 12:50 AM
Points: 12,
Visits: 323
|
|
You can setup a job to execute the package and start the job by using System procedure. or you can create a bactch file and trigger the batch file in your SP or you can use OLE Automation procedure to call an SSIS package. or The above way...using XP_cmdshell
to use xp_cmdshell/OLE Automation procedure, you must enable the property on your SQL Server.
sunilreddy http://msbimentalist.wordpress.com
|
|
|
|