Harry
Harry

Reputation: 51

Integrate SSRS with Visual Studio 2010

Is there a way to integrate SSRS with Visual Studio 2010?

If not, is there any other way to use SQL Server Reporting Services in my projects, when using SQL Server 2012, MS Report Builder 3.0 and Visual Studio 2010?

Upvotes: 4

Views: 7974

Answers (3)

patrickmdnet
patrickmdnet

Reputation: 3392

Since this question was originally asked, MS has released SQL Server Data Tools – Business Intelligence for Visual Studio 2012 which allows you to create SSRS reports from VS 2012.

Upvotes: 1

mhep
mhep

Reputation: 2139

If you wish to use reporting services reports within a winform/webform application you can do this using the report viewer control: http://www.gotreportviewer.com/

You cannot create SSRS 2008/2008 R2 reports in Visual Studio 2010, you need to use Visual Studio 2008/Business Intelligence Development Studio or Report Builder 3.0.

Only SQL Server 2012 supports development of SSRS reports in Visual Studio 2010.

Upvotes: 0

Turque
Turque

Reputation: 717

You are probably using SQL Server 2008 R2 and to start the tool you are going to use to create reports in SSRS, you to go Start> All Programs > Microsoft SQL Server 2008 R2 > SQL Server Development Studio. There you can create projects with the Report Wizard to use in SSRS. You need to have Reporting Services service started and other stuff, but that's another question.

Upvotes: 2

Related Questions