Using the sql server project in visual studio 2010, I noticed that if my target database does not exists, I get two things :
- CREATE DATABASE
- PreDeployement & PostDeployement Scripts
However, if the target database exists, I don't get the CREATE DATABASE (which is perfectly fine), but the two scripts (Pre & Post) are not copied to the sql/debug directory. They are referenced in the deploymanifest though.
Is there a way to have my scripts copied even if the target database exists? We have some maintenance stuff in the PreDeployement scripts that needs to be executed before the database update...
Thanks