Flyway is an open-source database migration framework for Java.

learn more… | top users | synonyms

0
votes
1answer
7 views

flyway unable to init or migrate after a clean

I've just performed a clean operation, i've added a new schema one the prop file then ran clean again to remove that schema from db then when i tried to do a migrate it doesnt allow me i get the ...
0
votes
0answers
13 views

Support options for Open Source offerings with small support structure

What support options are there for Open Source db tool offerings such as FlywayDb apart from relying on the original developer or community. E.g. When enterprises request quick critical fixes in ...
0
votes
1answer
18 views

Flyway migration progress

Is there a way to get the current status / progress of a migration? We are currently building a UI for flyway and we are having difficulties managing a progress bar. flyway.migrate only return how ...
0
votes
0answers
12 views

What value shall I set for the parameter url/driver in the configs.properties file for the SQL Server 2005 database?

I have installed flayway command-line tool 'flyway-commandline-2.1.1'. I have SQL Server 2005 installed on my machine. So I also have downloaded the jdbc driver for SQL Server 'jtds-1.2.7' and placed ...
0
votes
1answer
19 views

Flyway Migration Conflict Handling

Currently our company handles all database schema changes by manually creating,distributing, and running the necessary SQL scripts. Obviously this leads to issues as various machines get updated ...
0
votes
0answers
34 views

Flyway “Illegal call to close() detected”

When running Flyway, I get the following exception: Illegal call to close() detected java.lang.Throwable at ...
0
votes
0answers
10 views

sp_MSForeachtable statement does not get executed with flyway

I am trying to copy data from one DB to another. Before copying I wan't to turn off all the constraints in the DB. Hence I call the following statement: exec sp_MSforeachtable 'ALTER TABLE ? NOCHECK ...
0
votes
1answer
11 views

Flyway Info screen State is Future, not Missing

Due to a few company-specific features, which I need to swap in and out, I sometimes have migrated scripts which are not present in the sql directory when I run "info" or "migrate" at a later time. I ...
0
votes
1answer
20 views

Flyway - Flyway Schema Creation issue

Just want to know whoever is working with flyway if they are getting this << Flyway Schema Creation >> with version set to 0. It suddenly started appearing on my metadata table and I ...
0
votes
1answer
24 views

Flyway multi database migration using API

I am using flyway-api for migrations and now I need to separate mysql and derby migrations. I have now migrations under db.migrations. How can I now separate migrations for mysql, derby? I need ...
0
votes
1answer
18 views

Flyway approach for Spring + JPA deployed to heroku

I'm thinking of using Flyway for my database migration. Seems like it will be simpler than creating my own SQL and Java migration scripts. However, looking at the documentation there seems to be ...
0
votes
1answer
20 views

CDI Flyway with multiple database vendor

Flyway provides framework which will execute migrations based on directory /data/migration My application supports Oracle, SQLServer or MySQL, i would like to keep scripts as /data/migration/oracle ...
0
votes
2answers
85 views

How does flyway / liquibase handle destructive upgrades in service?

Based on my understanding about flyway/liquibase, they provide ways to perform database upgrades through the pre configured scripts (SQL queries, Java files, etc.,). But i am not very much clear about ...
0
votes
1answer
26 views

Oracle COMPOUND TRIGGER with initialization section not working properly in Flyway

I would be happy getting support to following problem: If I try to integrate a PL/SQL-Script with a COMPOUND Trigger and a initialization section, it will be cutted after the first ";" in the ...
0
votes
1answer
21 views

Error Running Mixed SQL and Java Migrations - Error executing statement at line 1: package db.migration

I'm trying to run a mixture of SQL and Java migrations via Maven based on the example from Axel Fontaine here: http://www.methodsandtools.com/tools/flyway.php Basically I am trying to execute several ...
0
votes
1answer
38 views

All maven flyway plugins are executed with the last user

I have two oracle users and I am creating different schema for them. I mean each schema has different tables, types etc. I wanted to create both schemas by flyway maven plugin, first I had two maven ...
-1
votes
1answer
20 views

How to persist the changes, even an error is occured with in try catch in flyway?

I am using flyway and I have a procedure, which will migrate employees. In the procedure I am using try/catch block and using begin/commit transaction within the while loop of processing employee. If ...
0
votes
1answer
43 views

How can I get SQL print statements in Flyway logs?

I have an SQL stored procedure which prints a line when an exception occurs. But I am not getting any print statements in the Flyway logs, even though the DEBUG mode is ON. BEGIN TRANSACTION IF ...
0
votes
1answer
55 views

ORA-00900: invalid SQL statement using FlyWay

I get this error ""2013-05-20 15:44:28,637 ERROR [Server Startup] apachecommons.ApacheCommonsLog (ApacheCommonsLog.java:51) - com.googlecode.flyway.core.api.FlywayException: Error executing statement ...
0
votes
1answer
33 views

Flyway Java API Logging

I am using the Flyway java API. I want to see in my logs which sql files are being executed while Flyway.migrate() operates. How do I set flyway logging?
1
vote
1answer
35 views

Flyway - compare checksums

I am playing about with flyway and I wanted to know if anyone managed to compare the checksums of the applied scripts and classpath scripts, so when updating a script in classpath (dir) I am able to ...
1
vote
2answers
93 views

Can Liquibase or Flyway handle multi non-linear versioning scenario?

Here is a tough one. v1.1 has a table with index i. v2.1 contains this table and index as well. A bug was discovered and in v1.1.0.1 we changes the code and as a result, decided to drop the index. ...
0
votes
1answer
46 views

How to handle Oracle synonyms with Flyway 2.0.1?

I'm using flyway for a long time now. Very nice/complete tool! I'm actually facing an unexpected situation... I have two schemas: An Owner pocessing the tables and sequences A User using synonyms ...
0
votes
0answers
21 views

flyway - a way to do distributed?

I've been very impressed with the amount of time flyway saves me doing basic things: creating a schema from scratch, and updating it to a particular version. I've been a bit frustrated whenever ...
0
votes
0answers
20 views

Multiple schemas works for clean and init, but not for migrate

With the command-line option, I tried to do the multiple-schemas thing: have a gold schema with the metadata table, and a series of user sandboxes slaved to it. flyway -schemas=SCHEMA1,SCHEMA2 clean ...
0
votes
1answer
22 views

Can Flyway coeexist with unmanaged database objects?

Does Flyway have to manage ALL the objects in my database schema? Or is it permissible to have objects that are dropped/recreated outside of the Flyway system, for example tables containing lookups ...
1
vote
1answer
64 views

Issue on Google App Engine GAE: Unable to lock table schema_version

We are on GAE with Cloud SQL. Everything works great on the local dev server. We are using the AppEngineDriver with a static connection string. The connection is good in the production environment as ...
1
vote
1answer
22 views

Can Flyway drop database-level (not schema-level) objects for SQLServer?

Flyway operates at the schema level. What about objects at the database level, e.g. roles? It seems that these database-level objects are within the scope of what an application owns and could be ...
1
vote
0answers
60 views

Using Flyway command-line to pass runtime arguments into Java migration classes

I'm using Flyway's command-line tool to execute SQL and Java migrations. What I'm trying to do is pass runtime arguments from the command line and access those runtime arguments in my Java migration ...
0
votes
1answer
106 views

Flyway with multiple databases connections

I'm trying to use flyway on a complex ERP with multiple databases, but I didn't find any hint to make it runs. I'm using an ant script together with Hudson to build the whole system. So, I created a ...
1
vote
1answer
112 views

Flyway:init doesn't create schema database

I'm using flyway to manage a multi-schema database in mysql and I've configured flyway using Maven. I have listed a database called 'metadata' as the first in the <schemas> tag so flyway will ...
0
votes
2answers
71 views

Flyway and spring integration

How do I properly configure flyway when integrating with Spring? I see there is a configure method that takes properties, but from the spring XML it would take a setter method to provide a way to ...
0
votes
1answer
61 views

Creating stored function in H2 on Win64

I am getting an error in Win64 environment during creating a user-defined function. I am using flyway to execute the following simple script: CREATE ALIAS TRANSLATE_NAME AS $$ String ...
0
votes
1answer
71 views

Flyway mysqldump script Failing SILENTLY

A few updates I've got a sql script migration that will run if I pipe it to mysql, but not via flyway. The script is being executed, but the first lines are apparently erroring out. As soon as it ...
0
votes
1answer
52 views

Mysql dump comments directives and simple comments

We are planing to use Flyway to manage our migrations because it seams to be a great tool that could perfectly suit our needs. What we have today is MySQL databases for development, and mysql - oracle ...
0
votes
2answers
176 views

Flyway not finding my sql migrations in db/migration

The error: [ERROR] com.googlecode.flyway.core.api.FlywayException: Unable to determine URL for classpath location: db/migration (ClassLoader: ...
0
votes
1answer
26 views

Set terminating character in Flyway for DB2 procedure creation

I am trying to create a db2 stored procedure, and grant privileges to it in a Flyway migration. I am running 2.1.1. The procedure includes semi-colons with it. I can create the procedure fine ...
0
votes
1answer
58 views

Loading initial schema into Flyway table for existing database

I have read through the Flyway (2.1.1) documentation, and I just wanted to get a little clarification on one point... I dumped the current DDL from our production db into a file, V1__baseddl.sql. I ...
0
votes
1answer
63 views

Migrating Stored Procedures with Flyway

How should procedural database code like stored procedures be managed with a database migration tool like Flyway? Unlike DDL I would not want to see changes to a stored procedure stored within ...
0
votes
1answer
24 views

Flyway is there a way to use it throught MAVEN AND API in same project

In our project I would like to use flyway framework for Database delivery process knowing that A) the delivery team and the application don't have the same USER to access the database (delivery team ...
1
vote
1answer
95 views

Can Flyway execute SQL scripts that are not treated as migrations?

We would like to use Flyway for database migrations. In addition to our migration scripts, we have a need to execute some scripts that should not be treated as migrations (and do not need to be ...
0
votes
1answer
20 views

Debug output when using flyways ant tasks

The command line documentation mentions an argument -x for debug output. However I cannot find anything in the ant task documentation. Is there a way to activate it there as well?
0
votes
1answer
102 views

Getting SQL Output in Flyway

I have been trying the Flyway Framework recently. It fits very well into my project and everything is so perfect. Now I understand that there is no way we can get the console output from a SQL ...
1
vote
1answer
164 views

Flyway “migrate” command can't find current schema (SQL Server)

I just upgraded to version 2.1.1, and now I'm seeing a strange error - the migrate command fails with a Flyway exception when I run it against a database on our staging and production database ...
0
votes
1answer
59 views

using flyway to patch multiple identical schemas

i have thoroughly read the flyway documentation but i am unclear if the scenario i want is possible or not. i need to patch many identical schemas within the same database but i do not know all the ...
0
votes
1answer
98 views

Flyway: Migrating multiple databases

Is it possible to migrate multiple databases with the same data? I know the schema parameter but as far as I understood, it's for tables located in different databases / schemas. Not to duplicate the ...
3
votes
2answers
132 views

previewing the SQL Statements before migration using Flyway

I am new to Flyway and I am using Flyway 2.1 code base for migration and execution of SQL statements on a previous schema version using Flyway. Once i execute my newer SQL statements the version ...
-1
votes
1answer
38 views

Flyway SQL Server and Integrated Security

how can i use the flyway command line tool with SQL Server and a "Integrated Security" connection? Is this possible? Best regards Joerg
0
votes
1answer
197 views

flyway mysqldump migration

The more I understand how flyway works for database migration, the better I like it. I am trying to get flyway to read migrations generated from a mysqldump -d and I stumbled upon some weird ...
1
vote
1answer
110 views

flyway integration into existing systems

We're thinking about integrating flyway into our system, as it seems like a great tool to manage database migrations in an efficient way. However, I am not quite sure how to proceed: We have three ...

1 2 3 4 5