如何使用 RedGate、TeamCity 和 SVN 自动升级数据库
我们希望从手动脚本转移到 RedGate 数据库源代码控制来管理我们的数据库。
我们希望对存储过程/查找等进行更改,然后将它们签入 SVN 主干,这将触发新的 TeamCity 构建。我查看了 RedGate 文档 和一些谷歌结果(例如http://www.troyhunt.com),它们似乎区分了应该没问题的架构。问题在于查找表。
我们已经列出了哪些表是查找/静态表(在 SQL studio 中),但是如何将该列表获取到 SQL 数据比较工具(我想我可以查看数据文件夹中的文件)?另外,我们将如何更新现有数据,例如全部姓氏大写?
另外两点有趣的是我们有多个客户端使用相同的数据库模式,但有些可能使用 0.3 版本,有些可能使用 0.4 版本。我猜当我们想要使用旧版本时,我们需要更改 SQL 中的源代码管理绑定(例如,为了修复错误)
还有其他人使用多个版本的数据库执行连续部署吗?
谢谢
We are looking to move from manual scripts to the RedGate database source control to manage our databases.
We want to make changes to stored procs/lookups etc and then just check them into to the SVN trunk which will fire a new TeamCity build. I've looked at the RedGate docs and some google results (eg http://www.troyhunt.com) and they appear to diff the schema which should be ok. The issue is the look up tables.
We have listed what tables are lookup/static tables (in SQL studio) but how can I get that list to the SQL Data compare tool (I guess I could look at the files in the Data folder)? Also, How would we go about updating existing data, eg upper case all surnames?
The other two bits of fun are we have multiple clients using the same database schema but some might be on version 0.3 and some on 0.4. I'm guessing we will need to change the source control binding in SQL when we want to work on a older version (e.g. for a bug fix to live)
Does anyone else perform continous deployments with multiple versions of databases?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
应该可以为主干和主干创建 TeamCity 构建。每个分支都与 SQL Compare 命令行集成SQL 数据比较命令行。
It should be possible to create a TeamCity build for trunk & each branch, with the integration with SQL Compare command line & SQL Data Compare command line.