1

在不重复代码的情况下,更新 schema_version 表并在 flyway 中执行修改后的 PL/SQL 包/过程的更好方法是什么?

我的示例需要为每个 PL/SQL 代码修改创建一个类文件

public class V2_1__update_scripts extends AbstractMigration {
    // update package and procedures
}

AbstractMigration 类执行db/update文件夹中的文件:

public abstract class AbstractMigration implements SpringJdbcMigration {
    private static final Logger log = LoggerFactory.getLogger(AbstractMigration.class);

    @Override
    public void migrate(JdbcTemplate jdbcTemplate) throws Exception {
        Resource packageFolder = new ClassPathResource("db/update");
        Collection<File> files = FileUtils.listFiles(packageFolder.getFile(), new String[]{"sql"}, true);
        for (File file : files ) {
            log.info("Executing [{}]", file.getAbsolutePath());
            String fileContents = FileUtils.readFileToString(file);
            jdbcTemplate.execute(fileContents);
        }
    }
}

有没有更好的方法来执行 PL/SQL 代码?

4

3 回答 3

1

I wonder if it's better to duplicate the code into the standard migrations folder. It seems like with the given example you wouldn't then be able to migrate up to version N of the db, as some prior version would execute all the current version of the pl/sql. I'd be interested to see if you settled on a solution for this.

于 2013-08-01T20:26:11.553 回答
0

没有您错过的内置支持或其他命令。

在我的脑海中,我会考虑您在此处介绍的方式或使用生成器在 SCM 提交后生成新的迁移 sql 文件。

让我们看看其他人是否找到了更好的解决方案。

于 2012-08-13T08:31:07.290 回答
0

撰写本文时的 Flyway 版本 (v4.2.0) 支持专为此类情况设计的可重复脚本的概念。基本上,任何具有“创建或替换”语义的脚本都是候选脚本。

只需将您的脚本命名为R__mypackage_body.sql或您希望可重复脚本的任何前缀。有关更多信息,请参阅基于 Sql 的迁移和可重复迁移

于 2017-10-20T19:51:48.217 回答