Rene
Rene

Reputation: 23

Visual Studio 2008 solution (SSRS reports) to Visual Studio 2013

Does anyone know if it's possible to convert a Visual Studio 2008 solution file containing SSRS reports (.sln, with .rptproj and .rdl files) to Visual Studio 2013? We are running SQL Server 2012.

I have the SQL Server Data Tools installed with Visual Studio 2013 (per the research I've tried to do on this already). The error I'm getting is:

"This project is incompatible with the current edition of Visual Studio."

I'm just not sure how to make it compatible?

I also don't know if I can jump so many versions in Visual Studio (skipping 2010 and 2012), and if/how Visual Studio 2013 works with SQL 2012 re: SSRS.

I tried looking into the SQL Business Development download but the one for Visual Studio 2013 was for SQL 2014 and the one for SQL 2012 was for Visual Studio 2012 (or 2010. Either way it wasn't 2013).

Any help would be appreciated. Thank you!

Upvotes: 2

Views: 2258

Answers (1)

Scott Wylie
Scott Wylie

Reputation: 4735

The SQL Server Data Tools are cumulative support for each version of SQL so the latest version supports SQL 2014 and previous versions, not just SQL 2014.

SQL Server Data Tools

The SQL Server BI tools are also this way and will support down level SQL versions as is documented in this blog post SQL BI Tools

By installing this the latest version it should properly support the conversion of your project type.

If you are still not sure, please read this Microsoft Connect article that describes your error message of the project is not compatible and see the workaround for similar information above Project Not Compatible.

Upvotes: 3

Related Questions