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 report named "Debt Report ". It runs for every month and a pdf is generated at the first of the month by subscription option.
If I am running the report for the month then the report name of the pdf should be "Debt Report for April" and like wise if I run it for may then the name of the pdf should be "Debt Report for May".

How can I do this?

share|improve this question

3 Answers

up vote 1 down vote accepted

Assuming you are scheduling the report to a file share, you can set the name of the file share to be Debt Report for @timestamp - this will name the file in the format Debt Report for YYYY_MM_DD_HRMINSS .

If you only want the month name (not the entire timestamp) to appear in the filename, you will need to use a Data Driven Subscription.

share|improve this answer
i figured out that the Data Driven subscription can be used for this purpose but i am getting an error named "Cannot read the next data row for the dataset ." for the subscriptions.. can you help me out with this? – ResKing Jun 6 '12 at 7:26

Another option, although a bit more technical, is to use the rs.exe utility to generate the report. This involves:

  • creating a script file that generates the report (this is where you can set the filename to your preference)

  • creating a batch file that calls rs.exe with the script file as a parameter

  • running the batch file on a schedule e.g. with Windows scheduler or SQL Server Agent

There is an example here of how to do this (to create Excel files but the principle is the same) http://skamie.wordpress.com/2010/08/11/using-rs-exe-to-render-ssrs-reports/

share|improve this answer

The solution for this problem is "Data Driven Subscription" http://msdn.microsoft.com/en-us/library/ms169972(v=sql.105).aspx http://www.kodyaz.com/reporting-services/create-data-driven-subscription-in-sql-server.aspx

the following link helped me alot but the query given in the link creates trouble- cast the datatype of the getdate and it will solve the problem

http://social.msdn.microsoft.com/Forums/en/sqlreportingservices/thread/0f075d9b-52f5-4a92-8570-43bbdaf2b2b1

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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