I need to create a repeatable process for deploying SQL Server Reporting Services reports. I am not in favor of using Visual Studio and or Business Development Studio to do this. The rs.exe method of scripting deployments also seems rather clunky. Does anyone have a very elegant way that they have been able to deploy reports. The key here is that I want the process to be completely automated.
|
feedback
|
|
We use rs.exe, once we developed the script we have not needed to touch it anymore, it just works. Here is the source (I slightly modified it by hand to remove sensitive data without a chance to test it, hope I did not brake anything), it deploys reports and associated images from subdirectories for various languages. Also datasource is created.
Here is the batch to call the rs.exe:
| |||||||||
feedback
|
|
I used the script @David supplied but I had to add some code (I'm typing this up as an answer, as this would be too long for a comment. The problem is: if there is already a "shared datasource" attached to a report in the report definition, this is never the same datasource as the one that is created in the script. This also becomes apparent from the warning emitted by the "CreateReport" method:
So the data source has to be set explicitly afterwards. I've made the following code changes: I added a global variable:
At the end of the CreateDataSource method, that variable gets filled:
And in the PublishReport method, that data source gets explicitly set (after CreateReport has been called):
Note that this last call is only RS 2005 or higher. If you want to load your reports onto a RS 2000 server, you have to use SetReportDataSources in stead:
| |||
feedback
|
|
I strongly recommend RSScripter. As noted in the overview:
| |||
|
feedback
|
|
Well not really elegant. We created our own tool that uses the reportingservices2005 web service. We found this to be the most reliable way of getting what we want. It's not really that difficult and lets you expand it to do other things like creating data sources and folders as required. | |||
|
feedback
|
|
I know you say that you're not in favor of the Business Development Studio to do this, but I've found the built-in tools to be very reliable and easy to use. | |||||||
feedback
|
|
Have you looked into any Continuous Integration solutions such as CruiseControl.NET? If you are able to deploy Reports using rs.exe then you can setup an automated process in CruiseControl to build and deploy your Reports on a timer or whenever a report is modified. | |||
|
feedback
|