Liquibase is an open source, database-independent library for tracking, managing and applying database changes. It is built on a simple premise: All database changes are stored in a human readable yet trackable form and checked into source control.
0
votes
0answers
30 views
is it possible to update an existing row in DB, using liquibase?
Tried to find an answer to this question, but couldn't.
So, for example I have this table:
TABLE:
col1 | col2
123 0
124 1
and I want to change col2 value to 1 and this is how I'm ...
1
vote
2answers
31 views
Id generation issue with Hibernate, liquibase and hsqldb
I've created a table using liquibase:
<createTable tableName="employees">
<column name="id" type="bigint">
<constraints primaryKey="true" nullable="false"/>
...
0
votes
1answer
19 views
The order of loading locations in Spring @ContextConfiguration
I'm using the following configuration for my db integration test:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:spring/spring-master.xml"})
...
0
votes
0answers
24 views
Update one row in the table, using liquibase
I was hoping if someone could verify if this is the correct syntax and correct way of populating the DB using liquibase? All, I want is to change value of a row in a table and I'm doing it like this:
...
1
vote
0answers
20 views
Using liquibase file paths via both maven and spring
I update scheme and initial data in spring context using the following beean:
<bean id="liquibase" class="liquibase.integration.spring.SpringLiquibase">
<property name="dataSource" ...
1
vote
1answer
56 views
Escape for comments in SQL files with liquibase
I am working with liquibase and a hsqldb database.
I have a .sql file with 'insert' instructions for filling the database at the bootstrap, but if a string contains two minus signs close to each ...
-1
votes
0answers
11 views
How to compare data between two databases in liquibase?
I am trying to compare data between two database.
Please share the command to compare data between two databases.
1
vote
2answers
63 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
34 views
How to rollback a database to specific date in liquibase
I am trying to rollback a database based on specific date.
liquibase rollbackToDate 2013-05-14 10:13:16
it throws following error:
Error:Unexpected date/time format.
Please share the exact ...
0
votes
1answer
16 views
Escaping curly brace in liquibase migration
I have a liquibase migration that includes braces {}. JDBC interprets these braces as escape sequences. How do I escape them so they are treated as literal curly braces?
2
votes
1answer
27 views
Using liquibase on the existing database
We have a existing database in production. We have decided to use liquibase for all further updates and create any new database (like development or integration).
We have created liquibase scripts ...
0
votes
0answers
10 views
Liquibase AntTask: diffDatabaseToChangeLog for Hibernate don't run within Eclipse IDE (Juno)
i test currenlty the Liquibase 2.0.5 with Liquibase hibernate plugin 2.0.0 and hibernate 3.6.10. Both Liquibase.jar and Java-Quelle liquibase-hibernate-2.0.0.jar added to the classpath.
As ...
1
vote
1answer
49 views
liquibase as ant task, relative path to changelogs.xml not found
i use the 2.0.5 version of liquibase to test the db migrations.
Currenlty if i define the changeLogFile attribute into updateDatabase task as follows
and the "${changeLogFile}" is specified into ...
-4
votes
0answers
25 views
Issue on Comparing two databases [closed]
E:\Liquibase>liquibase --driver=com.mysql.jdbc.Driver --classpath=mysql-connector-java-5.1.24-bin.jar --url="jdbc:mysql://xxxx/cm_mgr_03_05_
01" --username=rrnt --password=xynts diff ...
0
votes
1answer
28 views
How to generate changlogFile in.sql format?
I did run this query to genereate changelogFile in .sql format
liquibase --driver=com.mysql.jdbc.Driver
--classpath=mysql-connector-java-5.1.24-bin.jar
...
0
votes
0answers
13 views
web start style distribution
I want to distribute an application to many organizations without much technical staff, being able to upgrade the application easily (executables + data models), and be able to synchronize or directly ...
0
votes
1answer
22 views
How to execute a third party jar using maven
I am using Liquibase (via its Maven plugin) to handle database migrations.
However not all Liquibase features are available via Maven. One in particular, Generate Changelog, is only available via ...
0
votes
1answer
42 views
Validate GORM model after migrations
We're getting started with running Liquibase migrations on Grails server startup. We'd like to use dbCreate='validate' on the dataSource, to ensure that the database and object model stay in sync. Our ...
0
votes
0answers
60 views
Liquibase using Java
I have few questions regarding Liquibase:
How/Is it possible to create table programmatically without having a physical changelog file?
How/Is it possible to turn off creation of tables - ...
0
votes
1answer
33 views
modifyDataType in Liquibase against SQL Server
I am trying to modify the data type on a number of columns from int to bigint using:
<modifyDataType tableName="ACCESS_HISTORY" columnName="ID" newDataType="${LongType}"/>
Where I have ...
0
votes
0answers
19 views
How generate ChangelogFile by comparing two existing changelog files
I am using Liquibase tool to maintain versions of a database in MySQL server
Here, I generate changeLogFile for a database
After one week, I want to compare the existing changeLogFile with the same ...
0
votes
1answer
74 views
Hsqldb has no data when populated via maven liquibase plugin
I've created schema and populated it via Maven liquibase plugin:
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
...
1
vote
0answers
36 views
Liquibase Diff Tool missing constraints
We are using with my company Liquibase's diff tool to check schema relevancy of our clients MySQL and Oracle databases automatically via jUNIT tests. For that point Liquibase is great.
Our problem ...
0
votes
1answer
22 views
How to call Java code from Liquibase lifecycle?
I would like to run code after changesets have been applied in liquibase. Basically I need to call a stored procedure my DBA has supplied after a column has been added to a table. I have been ...
1
vote
2answers
74 views
Initialize database without XML configuration, but using @Configuration
I would like to know how to initialize a database without having to create an XML file.
I already uses this kind of initialization that works fine, but in my current case I don't want to create an ...
0
votes
0answers
49 views
Using dropwizard-migrations: Could not find implementation of liquibase.logging.Logger
I'm getting a pretty odd exception that I can't figure out the cause of. When I run a db status, I get:
Caused by: liquibase.exception.ServiceNotFoundException: ...
0
votes
1answer
74 views
Liquibase doesn't commit changeSet with Ant
I've already tried liquibase 3.0 beta with Spring( btw It didn't work with 2.0 ). It went well.
Now I'm testing it with Ant with the same database and changelog, after rollbacked all the changes and ...
0
votes
1answer
25 views
Can we refer to a column from sysconstraints using name in sybase?
since the option of accessing via 'name' attribute is possible via
sysobjects
, is the same possible by
sysconstraints/syscolumns??
because i have not given id attribute to table or ...
0
votes
1answer
82 views
spring test injection not working when using TestExecutionListener
I want to use a custom TestExecutionListener in combination with SpringJUnit4ClassRunner to run a liquibase schema setup on my test database. My TestExecutionListener works fine but when I use the ...
0
votes
0answers
35 views
Liquibase dml and cross platform view comparison issue for mysql
Our implementation for oracle for comparing dml and ddl for cross platform views and comparing record between two table is working perfectly for us. We have a same requirement to compare dml and ddl ...
0
votes
0answers
16 views
liquibase tagDatabase does not work all the time
My project is orgranized by Maven, I used some in my changelog.xml, but when I run the pom.xml, there not enough tags in the databasechangelog table. I'm very confused.
<changeSet id="m3" ...
1
vote
1answer
77 views
Why does Liquibase Maven update goal fail with errors while command line works?
I have been trying to get Liquibase's maven plugin to work with a simple SQL Changeset.
It's a slightly modified version of the example at: http://www.liquibase.org/manual/formatted_sql_changelogs
...
0
votes
1answer
213 views
Liquibase lock - reasons?
I get this when running a lot of liquibase-scripts against a Oracle-server. SomeComputer is me.
Waiting for changelog lock....
Waiting for changelog lock....
Waiting for changelog lock....
Waiting ...
1
vote
1answer
108 views
liquibase map value when changing column type
Is it possible with liquibase to do some kind of mapping when doing a 'modifyDataType'?
Considering the following example:
<changeSet id="1" author="me">
<createTable ...
0
votes
0answers
205 views
Using the Grails Database Migration plugin, how do I generate the update SQL for a production database?
We recently added the Grails Database Migration plugin to our project and got it working with an initial changelog that has been added to our dev DB. We also figured out that you can update the DB ...
2
votes
1answer
114 views
Modify dataType for columns with data in Oracle using Liquidbase
I am trying to modify the dataType from NUMBER(10,0) to NUMBER(30,0) against a database with data in these columns. I have to use liquibase for this. I am using the following:
<modifyDataType ...
0
votes
1answer
97 views
Liquibase: UPDATE script (when some changes has already implemented in the database)
Ok, so the problem is probably in my approach to liquibase, I have implemented some changes in the database side, and I want to create changesets, so I simply add a new sql file to my changesets. When ...
1
vote
1answer
92 views
How do I spin up a MySQL database in Maven for use with our JUnit tests?
We're using Maven 3.0.3, MySql 5.5, JUnit 4.8.1, and Liquibase. Here's what we would like to do. I would like to spin up a MySQL database, run our liquibase database scripts against it, and then run ...
0
votes
1answer
229 views
Updating rows in Liquibase with a complex WHERE statement
I have never used Liquibase before and just can't figure out how to solve this problem. The project I recently joined is a remake of an old project, so we have to stick with an old database, which has ...
0
votes
1answer
75 views
Liquibase: How do I export changes since the last import?
I'm using Liquibase 2.0.5. I have the following process:
Export LIquibase changes to XML file.
Log in to database and run some db command (e.g. "ALTER TABLE ...")
Export the change made in step 2 ...
0
votes
1answer
49 views
liquibase mark changeset applied
How is it possible to mark specific changeset as applied in liquibase maven plugin? There's nothing about that in documentation, the command markNextChangeSetRan seems to do nothing.
1
vote
1answer
109 views
How to install liquibase on redhat linux
Thought this might help others. If you are running a headless VM it might not be immediately evident how to install liquibase. I was using a redhat linux box and wondering which command to try to ...
1
vote
0answers
60 views
How to let liquibase generate IDs for @GeneratedValue(GenerationType.TABLE) properties?
we are currently pretty stuck with the following situation:
We have several JPA-mapped entities where the IDs get autogenerated by means of @GeneratedValue(strategy = GenerationType.TABLE) ...
1
vote
1answer
87 views
Liquibase causing java heap space fatal error
the command i ran:
mvn liquibase:updateSQL -P MyProject -Dusername=MyUser -Dpassword=password
-Ddb_name=$(DB_NAME) -Duser_password=$(USERPASSWORD) -Dvarchar=nvarchar
-Dnumber=numeric -Dchar=nchar ...
0
votes
0answers
124 views
liquibase and mysql: How to convert tinyint(1) when the default value is bigger than 1?
When use the liquibase command line "generateChangeLog", it failed:
Liquibase Update Failed: Unknown bit value: 2
SEVERE 13-2-17 下午2:46:liquibase: Unknown bit value: 2
...
0
votes
0answers
110 views
How to debug dbm-gorm-diff errors?
I tried to run dbm-gorm-diff this way:
grails -Dgrails.env=dbref dbm-gorm-diff partner-mshconf.groovy \
--add --stacktrace --verbose --debug
And I got this error
...
0
votes
0answers
72 views
MS SQL Server JDBC Driver does not read remarks
I am trying to read the DB metadata for use with liquibase dbdoc from an SQL Server. However, it seems that neither
MS SQL Server JDBC driver (sqljdbc4-4.0.2206.100.jar)
nor
jTDS Sql Server JDB ...
0
votes
1answer
135 views
Liquibase: Incorrect syntax near ;
I am trying to deploy db changes using Liquibase and getting the below error on one of the stored procedure code.
SET NOCOUNT ON: Incorrect syntax near 'ON'.
at ...
0
votes
1answer
76 views
liquibase include file and dbDoc Or update fails
I have directory structure for migrations as follow:
db1:
latest/ (triggers,functions,procedures)
tables/
v000/master.xml
update.xml
db1/update.xml
<?xml version="1.0" encoding="UTF-8" ...
0
votes
1answer
200 views
Liquibase runOnChange=“true” but stored function in sqlFile not updated in database for changes
I have a changeset :
<?xml version="1.0" encoding="UTF-8" ?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
...
