Would one expect a backup of a SQL Server Compact database file created with Volume Shadow Copy Service expected to be consistent? I know the big SQL Server has a VSS writer to ensure consistency. If a connection is writing out to a SQL Server Compact database could the file be backed up in a inconsistent state?

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

backup files are called "crash-consistent" when there is no writer service. you may be missing the recent updates, but usually good. ofcourse, depends on how critical your data or application is.

link|improve this answer
So, I suppose since SQL CE is in-process, my own application would have to act as the writer service by receiving notification that a backup is about to occur. – Troy Jul 21 '10 at 2:01
It would have to, not sure the SQL CE code will do that automatically for you. Did you manage to find an answer here? – Hannes de Jager Feb 22 '11 at 13:16
feedback

Your Answer

 
or
required, but never shown

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