What is the function of the DBMDL file in a visual studio database project?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 52 down vote accepted

From what I can make out, it is a serialized file of your db model and is used as a cache for improving the performance of deployment. It is unique per user thus should not be checked into source control.

link|improve this answer
Thanks. This helps me too. – maxwellb Nov 24 '10 at 2:52
When creating a new SQL 2008 Database Project VisualSVN automatically elects not to check this file in so that also suggests to me that it's not a good idea to check it in to source control. – rohancragg Nov 29 '10 at 10:32
1  
Oddly enough, when I remove these dbmdl files, opening the solution results in a "contains a reference to a project which does not exist" error from database project to server project that doesn't show up again on subsequent loads. – Mayo Dec 31 '10 at 16:10
1  
That's because the dbmdl file contains the reference, and deleting it causes the error message. The file is then re-generated by Visual Studio and the error goes away. – belugabob Sep 9 '11 at 7:28
feedback

Your Answer

 
or
required, but never shown

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