在 Visual Studio 数据库项目/SQL Server 中创建默认数据

有没有办法在VS 2010的数据库项目中使用数据生成计划来创建一组默认数据?或者我是在吠错树,即数据生成计划最适合创建虚拟示例数据吗?

Are there way to using data generation plans in VS 2010's database projects to create a set of default data? Or am I barking up the wrong tree i.e. are data generation plans best suited to create dummy example data?

我们有一堆数据(默认设置、默认用户等)需要为每个数据库部署创建.如果有工具可以帮助我们解决这个问题,那就太好了,这样就可以进行源代码控制和更好的管理.

We have a bunch of data (default settings, default users etc etc) that needs to be created for each database deployment. It would be nice to have tooling to help us with this, so it can be source controlled and better managed.

我猜可能有第三方替代品,但我希望有一个内置的 Visual-Studio-Way 做事方式,因此它可以与 TFS 等很好地集成.

I'm guessing that there are probably third party alternatives, but I'm hoping there is a built-in Visual-Studio-Way of doing things, so it can integrate nicely with TFS etc.

推荐答案

可能有不同的方法来做到这一点,但基本的是:

There are probably different ways to do this, but the basics are to:

  1. 创建一个插入默认数据的脚本
  2. 编辑 Script.PostDeployment.sql 脚本以使用您的脚本插入默认值

例如,我在项目的 Scripts->Post-Deployment 文件夹下创建了一个新文件夹 DefaultData,并在此处添加了用于插入默认数据的脚本 InsertDefaultData.sql.然后,我将以下行添加到 Script.PostDeployment.sql ":r ..\DefaultData\InsertDefaultData.sql".

For example, I created a new folder, DefaultData, under the Scripts->Post-Deployment folder of my project and added my script for inserting the default data here, InsertDefaultData.sql. Then, I added the following line to Script.PostDeployment.sql ":r ..\DefaultData\InsertDefaultData.sql".

相关文章