合并数据库脚本的工具
大家好,我想知道是否有人使用过一种工具,它可以将一系列 .sql 脚本和某种清单文件按照清单中定义的顺序将它们合并到一个大 .sql 文件中?
我正在尝试将数据库更改打包集成到我们的自动化构建中,我可以为此编写一个工具,但我认为它可能已经存在。
如果有任何特定的解决方案,我们会使用 Nant 和 CruiseControl.NET。
谢谢。
Hey all, I'm wondering if anyone has ever used a tool which will take a series of .sql scripts and a manifest file of some sort and merge them into one big .sql file according to the order defined in the manifest?
I'm trying to integrate database change packaging into our automated build and I could write a tool for this but I figured it might already exist.
We use Nant and CruiseControl.NET if there are any solutions specific to that.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看看 DBSourceTools。
http://dbsourcetools.codeplex.com。
它专门设计用于帮助开发人员使用源代码控制进行数据库更改。
该工具将允许您在特定点建立数据库基线,并创建命名版本。
所有文件都以脚本形式写入磁盘,并且很容易添加到版本控制存储库。
查看管理发布版本的修补过程。
Take a look at DBSourceTools.
http://dbsourcetools.codeplex.com.
It's specifically designed to help developers use source control for database changes.
This tool will allow you to baseline your database at a specific point, and create a named version.
All files are scripted to disk, and very easy to add to a version control repository.
Have a look at the patching process for managing release versions.
我已经使用 Visual Studio 2008 Team Suite Database Edition 完全按照您的要求进行操作,并取得了非常好的结果。
I have use Visual Studio 2008 Team Suite Database Edition to do exactly what you are asking for with a very good results.