SQL Server Express vs express localdb

22,986

LocalDB is a special, low impact version of the SQL Server engine, that is not installed as a Windows Service, but launched (made to run) on demand by the ADO.NET client opening a connection to it. It is intended for single user scenarios, and not for any production use - for production you should use SQL Server Express (or higher)

I have a blog post that compares the various engines here: http://erikej.blogspot.dk/2011/01/comparison-of-sql-server-compact-4-and.html

Share:
22,986
Admin
Author by

Admin

Updated on July 09, 2022

Comments

  • Admin
    Admin almost 2 years

    I am having quite a few problems understanding differences between regular SQL Server Express and express Localdb.

    Before you go ahead and tag a previous post about this question, I've went through question history quite a few times.

    The resources that I found somewhat helpful were: Is there a difference between SQL Server Express (2012) and LocalDB? and an official Microsoft page article about it.

    I believe I do understand that Express Localdb is an edition of SQL Server Express, that is targeted to developers in order to reduce time consumption of all the "configuration".

    What exact configuration? What is the difference If I use Username\SQLEXPRESS versus (Localdb)\MSSQLLocalDB, it creates a database anyway. What are the differences in terms of publishing your application into production?

  • Admin
    Admin about 7 years
    The blog post was something really interesting to analyze. It did answer my question, but only partially: assuming that I was using LocalDB for development, how do you move on to production environment? It would be great if you could edit the answer, thank you once again!
  • ErikEJ
    ErikEJ about 7 years
    "how do you move on to production environment" - it depends- I use SSDT and simply deploy the database project to a production database
  • ruffin
    ruffin about 6 years
    Is there any reason to install both LocalDB & Express? Do they play together at all, or would having both on the same box cause issues?
  • ErikEJ
    ErikEJ about 6 years
    @ruffin No reason to install both, just use SQL Express