Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question

1 Answer

up vote 115 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.

share|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
2  
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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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