zoukankan      html  css  js  c++  java
  • 数据库版本管理工具Flyway(4.0.3)---工作机制(译文)

    How Flyway works

    The easiest scenario is when you point Flyway to an empty database.

    最容易的方案是Flyway指向一个空的数据库。

    It will try to locate its metadata table. As the database is empty. Flyway won't find it and will create it instead.

    FlyWay将试图查找它的元数据表。因为数据库是空的。Flyway找不到它的元数据表,然后就会去创建它的元数据表。

    You now have a database with a single empty table called SCHEME_VERSION by default:

    现在呢,我们就有一个数据库,这个数据库包含一个缺省的空表SCHEME_VERSION :

    This table will be used to track the state of the databse.

    这张表将被用于监测数据库的状态。

    Immediately afterwards Flyway will begin scanning the filesystem or the classpath of the application for migrations.They can be written in either Sql or Java.

    紧接着Flyway将开始扫描文件系统或者应用的类路径进行迁移。这些迁移文件可以是SQL脚本或者是java程序。

    The migrations are then sorted besed on their version number and applied in order.

    这些迁移文件按照版本号进行排序并且按照这个排序去执行。

    As each migration gets applied,the metadata table is updated accordingly:

    当每一个迁移文件被执行后,元数据的表就会按照格式进行更新。

    schema_version

    With the metabata and the initial state in palce,we can now talk about migrating to newer versions.

    这样我们就可以根据元数据和数据库初始化的状态,进行数据库升级了。

    Flyway will once agein scan the filesystem or the classpath of the application of the migrations. The migrations are checked against the metadata table. If their version number is lower or equal to the one of the version maked as current, they are ignored.

    当Flyway 再次扫描迁移的时候,它就会检查元数据表中迁移版本,如果要执行的迁移脚本的版本小于或者等于当前版本,Flyway将会忽略,不再重复执行。

    The remaining migrations are the pending migrations : available , but not applied.

    剩下的迁移脚本将会被执行迁移:可获取的并且没有被执行过的脚本。

    They are then sorted by version number and executed in order:

    这些迁移文件根据版本号进行排序并且有序执行。

    The metadata table is updated accordingly:

    元数据的表也会做相应的更新:

    And that's it! Every time the need to evolve the database arises, whether structure (DDL) or reference data (DML), simply create a new migration with a version number higher than the current one. The next time Flyway starts, it will find it and upgrade the database accordingly.

    这样的话,每次要做数据库升级,无论是执行DDL语句还是执行DML语句,所有的解决的问题的就是创建一个高于现在版本的迁移文件。当下一次Flyway开始运行的时候,它将会自动发现升级脚本,执行并且更新元数据表。

  • 相关阅读:
    xcode常用的快捷键
    属性字符串(NSAttributedString)的简单应用
    ARC下OC对象和CF对象之间的桥接(bridge)
    oracle字符集相关问题
    oracle 利用flashback将备库激活为read wirte(10g 及上)
    dataguard 归档丢失(主库中无此丢失归档处理),备库基于SCN恢复
    DATAGUARD 在线重建备库
    DATAGUARD 添加修改REDOLOG大小
    ORACLE 10G 闪回建议
    10G R2 参数文件相关
  • 原文地址:https://www.cnblogs.com/xiaotao726/p/5673373.html
Copyright © 2011-2022 走看看