How to install localdb separately?

92,862

Solution 1

From MSDN

The primary method of installing LocalDB is by using the SqlLocalDB.msi program. LocalDB is an option when installing any SKU of SQL Server 2012 Express. Select LocalDB on the Feature Selection page during installation of SQL Server Express. There can be only one installation of the LocalDB binary files for each major SQL Server Database Engine version. Multiple Database Engine processes can be started and will all use the same binaries. An instance of the SQL Server Database Engine started as the LocalDB has the same limitations as SQL Server Express

enter image description here

Or you can download standalone SqlLocalDB.msi from the list of available downloads on the SQL Express downloading page

enter image description here

To locate localdb instance on your PC simply try to connect to (localdb)\Projects

enter image description here

Solution 2

If you downloaded SqlLocalDB.msi You can use silent install.

msiexec /i SqlLocalDB.msi /qn IACCEPTSQLLOCALDBLICENSETERMS=YES

Remember about administrative rights for installation !

Solution 3

Note for people who got SQL 2016. You do in fact need to choose "Express" during installation of SQL 2016 to choose "localDB" option. If you choose anything else (like Developer edition for example), "localDB" will not appear as option under "Shared features"

Developer Edition
enter image description here

SQL Express
enter image description here

Solution 4

Question is old but I think this is allways nice to know:

How to check if you have LocalDB installed, and if you do have it, which version it is:

  1. Open Command Prompt
  2. Enter "SqlLocalDB info" (without quotes)
  3. Hit 'Enter' and your should see something like this,

which means you have version "MSSQLLocalDB" installed.

There are a couple of versions:

  • v11.0
  • v12.0
  • v13.0 and
  • MSSQLLocalDB
Share:
92,862
user1687824
Author by

user1687824

Updated on May 23, 2020

Comments

  • user1687824
    user1687824 almost 4 years

    If I have to work with localdb, do we need to install it separately?

    I have SQL Server 2008 R2 Management Studio installed, SQL Server 2012 installed, .net 4.0.2 update installed. But I don't see localdb in the PC yet.

  • Tod Thomson
    Tod Thomson over 8 years
    Hoping to save some others time... SQL Server 2012 Express LocalDB Service Pack 2 (v11.0) is available here: microsoft.com/en-au/download/details.aspx?id=43351
  • seangwright
    seangwright almost 8 years
    @VahidN it looks like with SQL Express 2016 you can't download just LocalDB. The download link doesn't give you the multi-select modal like previous versions do.
  • VahidN
    VahidN almost 8 years
    direct download link of en_sql_server_2016_localdb_x64_8762243: download.microsoft.com/download/E/1/2/…
  • webworm
    webworm almost 8 years
    So are you saying you can install SQL Server 2016 and then afterwards install LocalDB as part of SQL Server Express 2016?
  • J86
    J86 almost 8 years
    @VahidN do I need to install that if I have SQL Server 2016 Developer Edition installed? How do I check if I already have LocalDb installed? The above (localdb)\Projects didn't work for me!
  • J86
    J86 almost 8 years
    I'd like to know this too! How do I get LocalDB when I have SQL Server 2016 Developer edition installed?
  • VahidN
    VahidN almost 8 years
    Open a new topic + Run SqlLocalDB info command to find the installed instances.
  • Bernhard Döbler
    Bernhard Döbler about 7 years
    go.microsoft.com/fwlink/?LinkID=799012 There's a downloader that's about 3 MB. That allows for downloading SQL Server Express (1.4 GB) or LocalDb (44 MB)
  • VahidN
    VahidN over 6 years
  • Frank Fu
    Frank Fu over 6 years
    I might add that if you wanted to open this database in SSMS then you simply chose Server name: (LocalDb)\MSSQLLocalDB and Windows Authentication by default
  • VahidN
    VahidN over 4 years