How to convert SSRS 2008 Server reports to SSRS 2008 Client Reports
I have a large SSRS 2008 Server Report Project (more than 200 reports). Currently my company strategy has been changed and we want to convert these server reports to client reports.
All of the Server reports use stored procedures (or in some cases from the SQL functions)
All of them work properly andthere is no problem
Beause of project scale it is not a good idea to create all of server reports in client again.
So I want to check how to convert SSRS 2008 Server reports to SSRS 2008 Client reports 开发者_如何学Python(.rdl
to .rdlc
).
Note : I know that client reports use Dataset and I have to create Dataset. I'm also looking for a way to generate these dataset too. But for now I'm just looking for a way to convert .RDL
files to .RDLC
files.
If there are any application which can convert RDL XML to RDLC XML let me know.
Any help appreciated.
After a while I foud this Converting RDL and RDLC Files helpfull
1- Rename the .rdl file to use the .rdlc file extension.
2- In Visual Studio 2008, open the solution or project that will contain the report.
3- Create or add the dataset that defines the data you want to use to your projector solution. For more information, see Creating Data Sources for a Report.
4- On the Project menu, click Add Existing Item and then select the .rdlc file that you created in the first step.
5- In the project, open the form or Web page that will contain the report.
精彩评论