0

I have downloaded Microsoft SQL Sever 2017 and would like to install it. But just to be sure I checked installed applications and I found that there is:

  • Microsoft SQL Server 2012 native client
  • Microsoft SQL Server 2016 LocalDB

installed already. ( I noticed that because there was a Microsoft SQL Server folder in Program Files)

Can I just proceed with the installation? I don't recall having installed SQL server previously so I am not sure why those two are installed in the first place

Also, I would like to have SQL Server management studio installed. Is this a separated install?

1 Answer 1

3

The SQL Server 2012 Native Client is a client library for connecting to SQL Server, and SQL Server 2012 is the latest version. Installing SQL Server 2017 will not impact this, and vice-versa. More details here.

LocalDB is a feature of the Express Edition of SQL Server used by developers for testing against SQL Server with minimal configuration and overhead. You can install SQL Server 2017 side-by-side with a LocalDB instance without any issues. More details here.

SQL Server Management Studio has been separated from the SQL Server installation media since SQL Server 2016. You need to download and install SSMS separately from SQL Server. Download link here.

Not the answer you're looking for? Browse other questions tagged or ask your own question.