Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a web site in 3 environments (DEV/TEST/PROD). The Web Site uses SSRS which also has 3 different environments(DEV/TEST/PROD). Currently, I am deploying the reports using the Manual Deployment mechanism provided in the SSRS Solution (i.e., right click a report and click "Deploy"). I have to manually change the Deployment URLs for each environment.

Is there a way to Automate this so that reports are automatically deployeed to PROD and TEST if a change occurs in DEV? I've seen some info on RSScripter but it looks a little tricky/clunky...I was hoping for a more succinct/streamlined solution.

Thanks MikeTWebb

share|improve this question
4  
"not constructive" seems harsh given the good and useful quality of the answers. – Jason Feb 26 at 17:25
Completely agree @Jason. This question seems pretty constructive to me. Will, I don't see any debate, arguments, polling, or extended discussion.. – Tom Hunter Apr 2 at 21:17

closed as not constructive by Will Feb 14 at 15:12

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 5 down vote accepted

You can script the deployment with RS.exe utility.

http://msdn.microsoft.com/en-us/library/aa179659(v=SQL.80).aspx

http://social.msdn.microsoft.com/forums/en-us/sqlreportingservices/thread/aeb7dbe5-3796-4123-886c-d520b3e62d3e

This sample does this with Powershell and to Sharepoint but you can get the general idea how to do this with Powershell and ignore the Sharepoint bit.

Here's how to format the script file (.rss) & here are some sample scripts.

There is also a Reporting Services Scripter tool that might be of use to you.

share|improve this answer
Great thanks,...I had noticed the RS.exe utility but struggled on how to create the.rss file that RS.exe uses. Any ideas on that? – MikeTWebb Jun 16 '10 at 20:20
I added a few links in the answer on the formatting of the .rss file and some samples. :-) – klabranche Jun 16 '10 at 20:33
That's great....thanks again. Appreciate it – MikeTWebb Jun 17 '10 at 16:11
Glad this helped you! – klabranche Jun 18 '10 at 4:27

I went with straight use of PowerShell and the SSRS web service. Script here

Another script I have used uses RS.exe but so far I do not see the advantage of using that over the above.

share|improve this answer
1  
Will (who closed the question) may not think that this question is constructive but it led me to this answer and Geoffrey's blog which was very useful. Thanks. – Badgerspot Feb 21 at 17:24

The SQL Server Reporting Services MSBuild Tasks may be of use (especially if you're already using MSBuild): http://ssrsmsbuildtasks.codeplex.com/

share|improve this answer

Here is an example of the report deployment tool based on RSS scripting. This simple command line tool uploads or upgrades existing reports one folder at a time. This free tool comes with SSRS reports: http://www.rbreporting.com/ssrs_reports.htm

I use this tool to provision testing environments and upgrade reports in production.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.