Flyway is simple to use and it works really well. It has an API for migrating the database on startup. Alternatively, you can also use the Flyway Maven Plugin, the Flyway Ant Tasks or the command-line client. Supported databases are Oracle, SQL Server, DB2, MySQL, PostgreSQL, H2 and Hsql. ...
6
votes
3answers
457 views
DB Migration tool Liquibase or Flyway?
I want to configure DB migration tool with my j2ee web application. The application is continuously building up by hudson server. I am using both ant and maven with it. So I need compatibility with ...
2
votes
1answer
127 views
flyway commandline tool - what option to re-execute failed DDL?
I successfully ran v1 migration with a create table DDL. I copied same to v2 file and ran - got the expected validation error message:
Migrating to version 1.0.002
...
2
votes
2answers
202 views
Silencing Flyway — a log4j problem
I've written a wrapper around Flyway I call Nomad. I am well pleased with Flyway, save the incessant logging it performs outside of Maven. I created an issue here. Each user of Nomad must make their ...
2
votes
1answer
452 views
How to roll back migrations using Flyway?
MyBatis migrations splits each SQL file into two sections:
One for migrating forward one version
One for migrating back one version
How does one roll back versions using Flyway?
1
vote
1answer
56 views
How can I get a Flyway Java Migration merely to execute an sql script?
One of the ways I'm trying to work around Flyway issue 156 (see here) is to rely on Java Migrations. To that end, I've written one based on the sample in order to establish the initial state of the ...
1
vote
1answer
41 views
Can Flyway find out and generate migration files from datamodel?
Ey everyone! :)
I have been having a look at Flyway but I am not sure about how I can use it. In my case, I have an entity model (annotated using JPA) and, for me, the useful it would be that FlyWay ...
1
vote
1answer
46 views
Flyway: Unable to find path for sql migrations
While running flyway migrate I am getting following error:
Unable to find path for sql migrations: /path to migration folder/
I am trying to following command:
java -cp ...
1
vote
1answer
51 views
Using flyway to efficiently manage repeatable scripts
db-maintain has the notion of repeatable scripts, such as stored procedures/triggers. When there is a change to such a script it needs to be rolled out again. Flyway seemingly always checks for the ...
1
vote
1answer
148 views
Pre- and Post-migration scripts for Flyway
I am looking for a way to execute a hook script before and after migration.
I have a bunch of views & stored procedure (sp) and would like the process to be
1) drop all views & sp
2) run ...
1
vote
2answers
96 views
Flyway output to SQL File
Is it possible to output the db migration to an SQL file instead of directly invoking database changes in flyway?
1
vote
1answer
160 views
Delivering hot fixes using Flyway
Let's consider the What is the best strategy for dealing with hot fixes? question from the Flyway FAQ section. In this question:
Application version 7 (and DB version 7) is deployed in production
...
1
vote
4answers
245 views
Chaining Maven Flyway commands
How can Flyway commands be chained into a single command using Maven?
For example, I want to run mvn initialize flyway:clean followed by mvn initialize compile flyway:migrate. However, mvn initialize ...
1
vote
1answer
165 views
Flyway: How to support cleaning of multiple schemas with same lifecycle?
Using DB migrations using Flyway with multiple schemas which have the same lifecycle, how can I achieve that they all get clean when I use flyway:clean?
1
vote
1answer
192 views
Flyway: Support for older DB's
I'm currently trying to set up some simple migration scripts for our databases. I was checking flyway, which seems to be simple enough for what I need. My problem is that, for Postgres, only version 9 ...
0
votes
0answers
50 views
Flyway 'migrate' ant task error: “Unable to find path for sql migrations […]”
I can not specify the correct path to the directory with .sql files. I tried to set the "baseDir" attribute to different directories in different places (in classpath, of course) and set different ...
0
votes
1answer
33 views
How do I best work around Flyway issue 156?
I'm trying to get Flyway configured and have run up against issue 156, where I can't escape the following message:
[WARNING] Unable to find path for sql migrations: db/migration
The folder exists, ...
0
votes
1answer
42 views
Flyway - How it is possible to do a migration in different schemas
my name is Marcel Zebrowski and currently I try to migrate simple sql stuff to different
schemas in an Oracle 11gR2 database. I have definded a datasource to the system user within my spring context ...
0
votes
1answer
48 views
Flyway DB Upgrader in Spring
I've a problem with the Flyway schema upgrader for Spring. Following code exists in my servlet.xml
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
...
0
votes
2answers
74 views
Generate update changes as delta scripts
H-ello , ALL!
I work with H2/J2EE/Spring application, and use Flyway to update production database on a production server - all is fine. The problem is that it is always very complicated to merge ...
0
votes
1answer
33 views
flyway supported database
We have seen flyway framework for database migration. We are very keen to implement same in one of our project. We use Sybase database in our project however we did not find Sybase as a supported ...
0
votes
1answer
27 views
Using Flway application integration with Pax Exam to test OSGi application
When trying to use Flway application integration to test an OSGi application using Pax Exam, I get the following error
...
0
votes
2answers
52 views
Migration scripts for Structure and Data
Is there a good or recommended tool that manages both DDLs and DMLs migrations?
Majority of my App configuration is stored in a database, I want to be able to freely develop and migrate this and not ...
0
votes
0answers
37 views
getting started with flyway for one with no java experience
I am interested in testing flyway and if I am not wrong I read that it supports db changes both through java and SQL. I am a dba and familiar with SQL but not java.
I read through the “Getting ...
0
votes
1answer
67 views
Is there a way to use HibernateTemplate/JPATemplate while writing Java Migrations in Flyway?
I am working on a project using hibernate3 with annotation configuration, and was looking at flyway for database migration tasks synced with development. I was hoping to use HibernateTemplate in java ...
0
votes
1answer
25 views
Flyway: how to find out maximum version available to migrate()?
I'd like to detect the condition where the user's database is newer than the maximum version available to migration (for example, the user downgraded to an older version of the software). When I run ...
0
votes
2answers
50 views
Flyway and Liquibase call through webservices like Soap, Rest
I have integrated both liquibase & flyway with my application. Both are working fine. Both have their pros & cons. Now my concern is with webservices. Can Rest and Soap be used with these ...
0
votes
0answers
124 views
Mysql on Windows XP on VirtualBox very slow [closed]
For flyway (http://code.google.com/p/flyway) CI integration tests on Jenkins (Ubuntu) we use a Windows XP image on VirtualBox 4.1 on which the the supported DBs (DB2, MySQL, PostgreSQL, Oracle, ...
0
votes
1answer
131 views
Is flyway database agnostic in it's support for multiple databases?
Is flyway suitable for implementation in an application that will support multiple databases. That is, we don't know what our customers are using, can be either MySQL, Postgres or Oracle. Can we still ...
0
votes
1answer
93 views
Use java.sql.Connection as DataSource for Flyway
Is there a way to set flyway to use an existing java.sql.Connection as DataSource, resp. is there a way to generate a DataSource from an existing java.sql.Connection?
I did not find a simple way to ...
0
votes
1answer
179 views
Flyway - drop db, create db
I have 2 files: db structure, and db data sql files.
(we are not in part of project where we are creating alter files yet).
Is there a way to achieve running these files before build each time if any ...
0
votes
1answer
181 views
Flyway migration during ear deployment
We would love it if flyway could migrate our database during deployment of an ear artifact. (JBoss 4.2)
It should abort if anything goes wrong...
Flyway with maven flyway:migrate works, but for ci ...