vote up 0 vote down star

I have a simple app that uses an SQL Express 2005 database. When the user closes the app, I want to give the option to back up the database by making a copy in another directory. However, when I try to do it, I get "The process cannot access the file '...\Pricing.MDF' because it is being used by another process." I closed the connection, disposed the connection, set it to nothing, and GC.Collect(), but it makes no difference. My connection string is "Data Source=.\SQLEXPRESS2005;AttachDbFilename=|DataDirectory|\Pricing.mdf;Integrated Security=True; User Instance=True" and I just keep using the same connection throughout. I didn't see where I could detach the database to counter the attach in the connection string.

1 - How do I RELEASE the thing? 2 - Is there a better way than just copying the database? The app is for my husband only, so I will be able to handle it if he actually does need to restore from backup.

Thanks!

flag

73% accept rate

3 Answers

vote up 0 vote down

There's an example in this post that shows how to back up a SQL Express database within a program.

link|flag
vote up 0 vote down

If this is a single user or application or read-only database, don't use SQL Server Express. This is what SQL Server Compact is for. This will solve your backup problem and simplify deployment as well.

link|flag
This won't quite work, because I love my stored procedures. But it's a very interesting option - thanks! – CindyH Jan 23 at 21:03
Use another in-process engine that does support SPs then. A db that runs as a service is just not appropriate for use with a local desktop app. – Joel Coehoorn Jan 25 at 20:47
vote up 3 vote down

You don't want to copy the mdf directly because SQL keeps most of the changes in the transaction log, take a look at the modified time after running some queries, it doesn't write directly to the file. I noticed this while setting up an rsync job.

Having SQL generate the backup is much safer and more desirable, single-user or multi-user. You can provide a link to a function calling the T-SQL which you can completely automate as far as source db and destination folder:

BACKUP DATABASE [mydatabasename]
TO  DISK = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Backup\Scheduled Task Backups\mydatabasename-backup' WITH NOFORMAT, NOINIT,  NAME = N'mydatabasename-Full Data

SQL 2005 had introduced another T-SQL syntax to do this, for the life of me I can't find it. But there are ways to do it through M$$SQL without having the full blown database server.

link|flag
You can detatch the db file from the server. Then it is safe to just make a copy. However, the database is unavailable while that happens. – Joel Coehoorn Nov 30 '08 at 14:11

Your Answer

Get an OpenID
or

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