Deploy Visual Studio 2010 Database Project

前端 未结 3 2020
后悔当初
后悔当初 2021-02-14 08:23

I have a Visual Studio 2010 Database project, from which I want to generate a script that simply puts up this database to another machine. The problem is that i can\'t find a so

3条回答
  •  抹茶落季
    2021-02-14 08:46

    You could always create an empty database and then do a schema compare in Visual Studio between your database project and the new empty database. You can amend the generated schema update script to also create the database (since the script will be to update an existing empty database)

提交回复
热议问题