使用 Liquibase 从现有数据库(包括存储过程)创建数据库变更日志 xml 文件

发布于 2024-10-30 22:00:55 字数 129 浏览 1 评论 0原文

是否可以根据数据库的现有状态创建初始数据库变更日志 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

书信已泛黄 2024-11-06 22:00:55

您可以使用包含“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.

み格子的夏天 2024-11-06 22:00:55

下载 liquibase.jar ,数据库驱动程序并保存到一个目录(例如:/home/mySystem/liquibase),在命令行中将目录更改为(/home/mySystem/liquibase)并运行下面提到的命令

java -jar liquibase.jar --driver=org.postgresql.Driver --classpath=postgresql-42.1.3.jar --changeLogFile=db.changelog.xml --url="jdbc:postgresql://localhost:5432/<databasename>" --username=<username> --password=<password> update

参考链接:

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

java -jar liquibase.jar --driver=org.postgresql.Driver --classpath=postgresql-42.1.3.jar --changeLogFile=db.changelog.xml --url="jdbc:postgresql://localhost:5432/<databasename>" --username=<username> --password=<password> update

Reference link:

http://www.liquibase.org/documentation/generating_changelogs.html

东走西顾 2024-11-06 22:00:55

我昨天才发现 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文