Creation of default data in Visual Studio database projects / SQL Server(在 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:
- 创建一个插入默认数据的脚本
- 编辑 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".
这篇关于在 Visual Studio 数据库项目/SQL Server 中创建默认数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Visual Studio 数据库项目/SQL Server 中创建默认数


- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- SQL 临时表问题 2022-01-01