I am looking into using the new SQL Server Express LocalDB (I think it is code named "Denali") for a desktop application.

It is currently running with SQL Compact, but the user is wanting to share the database between multiple PCs on a network. Unfortunately this is not something that SQL Compact can do, so I am investigating other solutions.

The client requires the ability to send database files easily to other sites or to back them up to a flash disk, so I am avoiding going to SQL Express because there is quite a bit of "administrator" knowledge required to backup and restore.

So, my questions is, does the new SQL Express LocalDB support remote connections to the database over a network and/or through a shared network folder with the mdf file in it?

LocalDB does support supplying a path for an attached local DB in it's connect string (AttachDbFileName) hence the shared network folder option.

NOTE: This question pertains to "LocalDB" the new version of SQL Express 'Denali' and not to SQL Server Express 2008 or prior. See article here announcing LocalDB's release: http://blogs.msdn.com/b/sqlexpress/archive/2011/07/12/introducing-localdb-a-better-sql-express.aspx

link|improve this question
1  
Clarification on the "Denali" part: Denali was the code name for SQL Server 2012, not for the LocalDB version of SQL Server Express. I think the confusion comes from the fact that LocalDB was introduced in CTP3 of SQL Server 2012, when it was still called SQL Server "Denali". – Krzysztof Kozielczyk Feb 9 at 20:49
Thanks Krzysztof! Now I understand :) – Mark Whitfeld Feb 22 at 9:58
feedback

2 Answers

up vote 1 down vote accepted

No, SQL Server Express LocalDB doesn't accept remote connections.

The idea with shared network folder might work, but only if you are able to make sure the LocalDB instance is shutdown before you try to copy the file. Also keep in mind that only one LocalDB instance can have any given database file open at the same time. and don't forget about the log files!

Additional security warning: unlike SQL Server Compact databases, SQL Server Express databases (including LocalDB ones) are not designed as secure data exchange format. For instance, they can contain malicious code in .NET assemblies embedded in them. So you should never open databases from untrusted source.

Maybe providing the customer with a simple tool that automates the backup process would be a better idea?

link|improve this answer
Thanks! A very comprehensive answer. The automated backup option unfortunately won't work because the client wants to be able to share and email the database as you would a word doc or the like. Any file based DBs that you would recommend for this that would support remote connections? – Mark Whitfeld Feb 15 at 7:47
feedback

In short, yes it can. Here is a tutorial on how to configure it.

Also, here is another post with a potential issue that might occur.

Both explain how to configure SQL Server Express to accept Remote Connections.

link|improve this answer
Thanks for your input, but my question is referring to "LocalDB" the new version of SQL Express 'Denali'. I will update the question to be more clear in this regard. Thanks! – Mark Whitfeld Feb 8 at 14:38
feedback

Your Answer

 
or
required, but never shown

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