﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Reporting Services / Reporting Services 2005 Development  / Call SSRS package from Stored Procedure or From SSIS? / 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>Tue, 21 May 2013 16:32:08 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: Call SSRS package from Stored Procedure or From SSIS?</title><link>http://www.sqlservercentral.com/Forums/Topic595411-1063-1.aspx</link><description>To call SSRS reports from SSIS package, refer one of my blog post.[url=http://msbimentalist.wordpress.com/2011/12/27/execute-ssrs-report-from-ssis-package/][/url]Let me know if you face any issues while developing.ThanksSunil Reddy</description><pubDate>Thu, 30 Aug 2012 14:02:47 GMT</pubDate><dc:creator>sunilreddy</dc:creator></item><item><title>RE: Call SSRS package from Stored Procedure or From SSIS?</title><link>http://www.sqlservercentral.com/Forums/Topic595411-1063-1.aspx</link><description>I did something similar to this by setting up a subscription to the SSRS report that occurred once (in the past so it wouldn't actually run) then created a SQL Agent job which has a step in it that executes sp_start_job 'name of SSRS report'.  It works well and can be integrated in an SSIS package as well.</description><pubDate>Fri, 25 Feb 2011 07:39:54 GMT</pubDate><dc:creator>Mark Eytcheson</dc:creator></item><item><title>RE: Call SSRS package from Stored Procedure or From SSIS?</title><link>http://www.sqlservercentral.com/Forums/Topic595411-1063-1.aspx</link><description>What l have been able to do do is create a script task using VB.Net that calls an SSRS report passes in the user name, password, parameter then save it as a specified password.  However this is done using SSIS 2005 calling SSRS 2008.  The previous code l had worked for SSRS 2005 :-(Is this what you where looking to do?</description><pubDate>Thu, 06 Jan 2011 02:32:22 GMT</pubDate><dc:creator>rwlp.french</dc:creator></item><item><title>RE: Call SSRS package from Stored Procedure or From SSIS?</title><link>http://www.sqlservercentral.com/Forums/Topic595411-1063-1.aspx</link><description>I can provide you some tried &amp; tested snippet to call a SSIS Package from SP.  You may have to enable the command shell scripting as  shown in the snippet since in SQl2008 it is disabled by default. filePath &amp; filename are  user variables in the SSIS package, on which the package is dependendant on. You could try calling a SSRS on similar lines if you haven't yet  got what you were looking for. Cheers ![code="sql"]declare @cmd varchar(1250)declare @ssispath varchar(1250)declare @filePath varchar(1250)declare @fileName varchar(1250) set @ssispath = 'C:\SAPImport\AutomatedZ23Processing.dtsx'set @filePath = 'C:\ExportFileFolder\\'set @fileName = 'test.Xlsx' select @cmd = 'dtexec /F "' + @ssispath + '"'select @cmd = @cmd + ' /SET \Package.Variables[User::filePath].Properties[Value];"' + @filePath + '"'select @cmd = @cmd + ' /SET \Package.Variables[User::fileName].Properties[Value];"' + @fileName + '"' EXEC sp_configure 'xp_cmdshell', '1'  --- Enable Command ShellRECONFIGUREexec master..xp_cmdshell @cmdEXEC sp_configure 'xp_cmdshell', '0'  --- Disable Command ShellRECONFIGURE [/code]</description><pubDate>Wed, 05 Jan 2011 14:36:23 GMT</pubDate><dc:creator>Mohan.deval</dc:creator></item><item><title>RE: Call SSRS package from Stored Procedure or From SSIS?</title><link>http://www.sqlservercentral.com/Forums/Topic595411-1063-1.aspx</link><description>I have not tried this, but have considered it for an upcoming project.  Can you create a one-time subscription, which would then create a SQL job.. Then execute that job from your proc/SSIS?</description><pubDate>Thu, 09 Sep 2010 12:47:53 GMT</pubDate><dc:creator>Onskee</dc:creator></item><item><title>RE: Call SSRS package from Stored Procedure or From SSIS?</title><link>http://www.sqlservercentral.com/Forums/Topic595411-1063-1.aspx</link><description>Hi!  Did you ever find out how to do this?</description><pubDate>Mon, 23 Aug 2010 08:47:27 GMT</pubDate><dc:creator>oppelts</dc:creator></item><item><title>Call SSRS package from Stored Procedure or From SSIS?</title><link>http://www.sqlservercentral.com/Forums/Topic595411-1063-1.aspx</link><description>Hello,Can anyone help me in calling SSRS package from Stored Procedure or From SSIS? We need to execute the SSRS in loop. how this can be achieved?Thanks in AdvanceVijayraj</description><pubDate>Sat, 01 Nov 2008 03:12:43 GMT</pubDate><dc:creator>vijayraj105</dc:creator></item></channel></rss>