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

Creation of default data in Visual Studio database projects / SQL Server(在 Visual Studio 数据库项目/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:

  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".

这篇关于在 Visual Studio 数据库项目/SQL Server 中创建默认数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)