Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

hi I'm having issue with how to to deploy (a SQL2008 project) to multiple dbs.

I'm using VS2010 + SQL Server 2008 Database project, it imports the "DevDB", works all fine.

Now I want to deploy it to a different DB "TestDB", both DBs are on the same SQL server.

It's keep complained about ".mdf and .log" conflicts.

In SQL 2005 db project, I can just created 2 db connections for deployment, but how to I achieve that in 2008 dabase project??

Thanks in advance!

share|improve this question

1 Answer

up vote 1 down vote accepted

If you import your database from the same server you're deploying on, you'll need to edit the yourDB.sqlfile.sql and yourDB_log.sqlfile.sql (in Schema Objects/Databaes Level Objects/Files) and change the references to your database name for all references of the old name, otherwise there is a clash.

See http://continuouslyintegrating.blogspot.com/2009/12/database-already-exists-error-visual.html

share|improve this answer

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.