SQL Project Type Not Supported

I get this message when I try to open a solution, all projects load properly except one (.sqlproj). I installed, VS2010 SP1, Sql Server-2008 R2 SP1, MVC3, VS2010 SP1 Tools for SQL Server Compact 4.0 ENU

enter image description here

+6
source share
4 answers

This problem was resolved during the installation of VS-2012.

0
source

.sqlproj is the extension for the project file used by SSDT (Sql Server Data Tools)

Therefore, you need to install SSDT from either the SQL Server 2012 DVD or Web Plattform

http://msdn.microsoft.com/en-us/data/tools.aspx

if you only need database support and support for SSAS, SSIS and SSRS. Later versions of VS (2013 for sure) include this by default.

+5
source

Solved by installing "SQL Server 2010 Data Tools" using the web platform installer. I had the same error, and I don’t see that VS2012 has anything to do with it - nothing is related to 2012 in any of the projects I work with. SSDT is the key, but you want a version for its corresponding version of Visual Studio.

+3
source

I installed VS2010. Then I installed VS 2012 and could not open the .sqlproj files. Then I downloaded SQL Server Data Tools for Visual Studio 2010 from http://msdn.microsoft.com/en-us/jj650014 and it works again in VS2010.

0
source

All Articles