xorpower
xorpower

Reputation: 19003

Development of SSRS reports using Visual Studio 2010

I am developing some reports in SSRS (SQL Server 2008 R2). I have given application access by the client which has Visual Studio 2010 installed.

My Question:

Please guide! Any Questions? Please respond.

Thanks!

Upvotes: 1

Views: 14028

Answers (2)

lko
lko

Reputation: 8299

You can now use Visual Studio 2010 to edit and deploy reports (.rdl). I don't know if there are differences which would not work once deployed but I tested a change to a previously made report (VS2008/SQL 2008 R2) and deployed it and it worked fine.

BIDS has also been renamed SQL Server Data Tools.

Are SSRS Reports supported in Visual Studio 2010 or 2012?

Upvotes: 1

Purplegoldfish
Purplegoldfish

Reputation: 5294

If you want to develop SSRS Reports you need to install BIDS (Business Intelligence Development Studio) to create the .rdl files.

Sadly VS2010 can only create .rdlc files so you cant use VS2010 to develop reports to deploy to SSRS 2008.

The difference between these is that .rdl is a server controlled report and .rdlc is a client controlled report.

As for if VS2010 can be usefull, well you could write your SQL using it but I always just use Management Studio and BIDS 2008 or 2005.

Upvotes: 2

Related Questions