SQL: What is the difference between connecting to SQLEXPRESS and (localdb) v11.0 ?
I keep hearing questions from developers about the difference between SQL Server Express Edition and LocalDB. One asked me the other day:
What’s the difference between connecting to .\SQLEXPRESS and (localdb)\v11.0 ?
SQL Express (it’s really SQL Server Express Edition) is a service-based version of SQL Server i.e. it runs as a service all the time, independently of other applications. When you say .\SQLEXPRESS you are looking for a named instance of SQL Server called “SQLEXPRESS” that is on your local machine and connected to via a shared memory interface (that’s what the dot is).
2020-05-15