SQL Server 2017 Express missing from visual studio setup wizard prerequisites - c#

I have installed Microsoft Visual Studio 2017 Installer Projects, but SQL Server 2017 express is missing from prerequisite
How to add SQL Server 2017 Express? (I'm using WPF project with .NET Framework 4.6.1).
I tried SQL Server 2012 Express and got the following error:
WARNING: Item 'SQL Server 2012 Express' could not find any of dependent items '.NETFramework,Version=v4.5, .NETFramework,Version=v4.0'.
ERROR: To enable 'Download prerequisites from the same location as my application' in the Prerequisites dialog box, you must download file 'SqlExpress2012\SQLEXPR32_x86_ENU.EXE' for item 'SQL Server 2012 Express' to your local machine. For more information, see http://go.microsoft.com/fwlink/?LinkId=616018.
Thanks.

Related

Publish to web is not working after upgraded from VS2013 to VS 2015 and from MSSQL LocalDB 2012 to 2014

I updated Visual Studio 2013 to 2015 and updated SQL Server (LocalDB) from version 2012 to 2014. Now when I want to publish my project to the web I get this error.
Web deployment task failed. The database platform service with type Microsoft.Data.Tools.Schema.Sql.Sql120DatabaseSchemaProvider is not valid. You must make sure the service is loaded, or you must provide the full type name of a valid database platform service.
I searched through the files in the project like sln and csproj files and set everything to the correct VS2015 (14.0) version.
The server where I publish is running SQL Server Web 2012, but I can't update that server just yet.
Can anyone help me? I don't know where to look to fix this. Thanks.

How to publish CLR user defined function to SQL Server 2014 with Visual Studio 2012?

I have created a CLR user defined function with visual Studio 2012.
But I have SQL server 2014. The last Target Platform in project settings is "SQL Server 2012".
How can I publish a CLR UDF to a SQL Server 2014 instance using Visual Studio 2012?

Database connection error in Visual Studio 2013

I am using Visual Studio 2013 and have installed MS SQL Server 2014. I am trying to generate my database from a model (edmx) but I get the following error (screenshot attached):
In the edmx.sql file, is written:
-- Entity Designer DDL Script for SQL Server 2005, 2008, 2012 and Azure
I can see that 2014 version is missing from this generated file, and seems that the program tries to connect to the 2012 version .. how can I avoid this and manage visual studio tu use the 2014 version of MS SQL Server?
Thanks in advance
What Sql Server data tools are you using?
Have you tried newer version of it:
Microsoft® SQL Server Data Tools for SQL Server® 2014 CTP2

Opening a Visual Studio 2010 Project in Visual Studio 2008

I have an application on c# and sql client, visual studio 2010, I want to open the project on visual stdio 2008, I open new solution and add the project to him. but on run time I accept this error:
cannot be opened because it is version 655. This server supports version 612 and earlier. A downgrade path is not supported.
The MDF database in your project is version 655, which indicates it was created on SQL Server 2008. The server you connect to only accepts version 612, which indicates is a SQL Server 2005. A database created on SQL Server 2008 cannot be downgraded to SQL Server 2005. You must make sure you develop your database for the correct target server version. Now you have to either upgrade your deployment site to SQL Server 2008, or copy all the content of your SQL Server 2008 database into a new SQL Server 2005 database.

C# sql express 2008 not showing in the list of pre-requisites in setup project

I'm creating an installer via VS setup project, and I'd like to make sure sql express 2008 is installed if it is not already installed.
I right clicked on my installer project and go to Pre-requisites but SQL Server 2008 Express is not there. 2005 is listed, but I need 2008.
I installed SQL Server 2008 Express after Visual Studio. What do I need to do to re-register with Visual Studio so it allows me to select SQL Server 2008 Express?

Categories

Resources