使用 Liquibase 从现有数据库(包括存储过程)创建数据库变更日志 xml 文件
是否可以根据数据库的现有状态创建初始数据库变更日志 xml 文件?
我相信我已经使用generateChangeLog 生成了架构,但它似乎没有返回存储过程(或数据)。
我正在使用 SQL Server 2008
Is it possible to create an initial database changelog xml file from the existing state of the database?
I believe I've generated the schema using generateChangeLog, but it doesn't seem to return the stored procedures (or the data).
I'm using SQL Sever 2008
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用包含“DATA”的 diffTypes 标志返回数据。请参阅http://www.liquibase.org/documentation/diff.html。
但是,Liquibase 目前无法输出存储过程。为此,您需要使用不同的工具,并使用标签将它们包含在生成的变更日志中。
You can return the data using a diffTypes flag that includes "DATA". See http://www.liquibase.org/documentation/diff.html.
Liquibase cannot currently output stored procedures, however. For that you will need to use a different tool and include them in the generated changelog using the tag.
下载 liquibase.jar ,数据库驱动程序并保存到一个目录(例如:/home/mySystem/liquibase),在命令行中将目录更改为(/home/mySystem/liquibase)并运行下面提到的命令
参考链接:
http://www.liquibase.org/documentation/generate_changelogs.html
download liquibase.jar , database driver and save to one directory (Ex:/home/mySystem/liquibase), in the command line change the directory to (/home/mySystem/liquibase) and run the below mentioned command
Reference link:
http://www.liquibase.org/documentation/generating_changelogs.html
我昨天才发现 SQL Power Architect,它似乎能够生成 Liquibase 配置:
http://www.sqlpower.ca/page/architect
有关此组合的更多信息,请参阅此博客文章:
http://blog.mgm-tp.com/2010/11/数据建模第2部分/
I just yesterday discovered SQL Power Architect, which seems to be able to generate Liquibase configurations:
http://www.sqlpower.ca/page/architect
For more info on this combination see this blog post:
http://blog.mgm-tp.com/2010/11/data-modeling-part2/