SSRS report 2005 in VS2010 - visual-studio-2010

We are using SQL Server 2005 DB and front end code (ASP.net) in VS2010.
When i designed the report in 2005 and run the code it pop-up the error saying
" Remote report processing requires Microsoft SQL Server 2008 Reporting Services or later. "
We can't change the SQL Server from 2005 to 2008 :(
How can we overcome this situation ?
Any Idea or suggestion is appreciated.

if you have installed vs 2005 or .net framework 2.0 then just add report viewer in vs2010 and change its version from 10.0.0.0 to 8.0.0.0. Version changes occurred in design page and in web .config then you are able to see the report in vs 2010

Related

could not load file or assembly 'microsoft.analysisservices.adomdclient version=10.0.0.0

I have recently installed instance of SQL Server 2012 and SQL Server 2014,
Visual Studio 2015 and Window 10.When i am trying to create report in existing project using Report Wizard of VS2015, i am getting the error such as "could not load file or assembly "microsoft.analysisservices.adomdclient version=10.0.0.0",however if i try to create a report in new project using Report Wizard it is working fine without any issue.Please share with me if you have any solutions for this issue.
This link helped me to resolve this issue.I had to install SQL Server 2008 R2 feature pack( Microsoft® SQL Server® 2008 R2 ADOMD.NET and Microsoft® Analysis Services OLE DB Provider..etc) despite the fact that i have already installed latest version of SQL Server .
I resolved the issue by install Microsoft® SQL Server® ADOMD.NET for the needed SQL version and restart the server.

Visual Studio 2013 Express has no MS-Reports Template Installed

When I Google and look up how to add a RDLC report to my Visual Studio 2013 Project I get the answer i'd expect, usually "In the Templates pane, select Report or Report Wizard"
This article is one of them: http://msdn.microsoft.com/en-us/library/ms252067(v=VS.100).aspx
Nowhere can I find anything about "what if there is no Reports section" in your installed Templates
For the last month I thought this was because I needed to download SQL Server Data Tools for Visual Studio 2013. Yesterday I installed this. As a result I now appear to have a new version of Visual Studio 2013 called "Microsoft Visual Studio 2013 Shell (Integrated)". It has a purple icon and loads with a black splash image
My Project is currently running and being developed in Visual Studio 2013 Express for Web which has a green icon
If I try to load my project into the new Integrated Shell VS 2013 I get errors. What I really want is just to have the template available so I can add RDLC reports
I have already used MuGet to install MvcReportViewer and set my web config etc and references. Following instructions at https://www.nuget.org/packages/MvcReportViewer/
Now I need to create an RDLC but have no Template to do so
Could it be that VS-2013 Express has this feature turned off, because if I go into Help/About VS2013 Express for Web it has SQL Server Data Tools 12.0.30919.1 as an Installed product
Any comments appreciated
As far as I know, you can't use VS 2013 Express to edit RDLC files. It requires at least the professional version.
See: http://community.dynamics.com/nav/b/navteam/archive/2013/12/19/microsoft-visual-studio-2013-now-supported-for-rdlc-report-design.aspx
You can, however, create them in Sql Server Reporting Services, which is part of the advanced version of Sql Server Express Edition, using SQL Server Business Intelligence Developer Studio (BIDS) Express.
Try to download (Microsoft Report viewer 2012 run-time)
& Report Builder3
- First is the tool that display & Print Report.
- Report Builder is the tool that you can design report with it.
You Must have SQL Server 2012 Installed

How can I re-design my old .rdlc reports in VS 2012 Express?

I have many reports which I designed in VS 2010 Pro, now I only have VS 2012 Express, when I open the report it only opens as an XML file. I have been looking for solutions for ages without any success.
How can I view the designer (I tried installing Sql Server 2008
Express /w Advance Services) ?
Are there any external designers that can see the custom Data Types?
(I have tried fyiReporting)
If both of the above are not possible, then is there anywhere I can
find out how to edit the file by hand?
Many thanks.
If your reports were designed in VS 2010 that implies they are in SQL Server 2012 format. I would try SQL Server 2012 Express. It includes Report Designer via the Express edition of Business Intelligence Development Studio (BIDS).
The RDL specification is also available on MSDN if you prefer.
You can download the Report Builder according to your SQL Server version
Microsoft SQL Server 2008 Reporting Services Report Builder 2.0
Microsoft® SQL Server® 2012 SP4 Report Builder
Microsoft® SQL Server® 2014 Report Builder
Microsoft® Report Builder SQL Version >= 2016
NOTE: I downloaded 2008 version and when you open a file with the Report Builder the extension says .rdl, if you have .rdlc just choose All Items (*.*)
Also you don't need to have SQL Server installed to create/modify a report but if you want to test it you have to install it
Here are the schema definitions for the RDL format according the SQL Server version

Use MS SQL Server 2005 Reporting Services with Visual Studio 2010

While writing this question I had a simple idea which fixed the issue. Maybe other people have the same problem or you would like to comment this so I'm posting it anyways.
tldr/simplified question:
How do i use MS SQL Server 2005 Reporting Services in Visual Studio 2010?
Solution:
Just copy the Visual Studio 2008 Reporting DLLs in your project and include them as references. I guess you have to own a licence for vss2008 when doing this but technically this solves the issue.
Original question:
How can i use MS SQL Server 2005 Reporting Services in Visual Studio
2010? The reason i ask this is the following: We migrated to
VSS 2010 as our IDE but are still using MS SQL Server 2005.
Now, i want to change a piece of code in a Project which makes use of
Reporting Services on said SQL Server.
After converting the Solution to a VSS2010 Solution I get BuildErrors
because it can't find the namespaces "ReportViewer" and "Reporting".
That's because the references to
Microsoft.ReportViewer.Common (9.0.0.0)
Micrsofot.ReportViewer.WinForms (9.0.0.0)
Are no longer resolvable. So i have to replace them with the
references to the same Assemblies in Version 10.0.0.0.
After doing that the Solution builds successfully, but when opening
the ReportViewer i get an SoapVersionMismatchException telling me that
for Remote-Processing i have to use Microsoft SQL Server 2008
Reporting Services or higher.
You need to add the old references to your project. You can find them on your 2005 reporting server.
These can be found on your reporting server in the GAC.

How to upgrade VS2008 reporting Schema from 2005 to 2008

As you all know Visual Studio using 2005 schema to create RDLC reports.
SSRS 2008 use 2008 schema to create RDL reports.
So I'm looking for a solution to change VS 2005 schema to 2008 schema. How to do this.
will this issue fix with installing Report Viewer 2010 or not ?
You should be able to install Business Intelligence Development Studio (BIDS) from the SSRS2008 install, and then just open the old reports in it, they get automatically updated to the new schema. But this will also mean that your report will no longer run on SSRS2005.

Resources