How does Liquibase handle Oracle Tables and columns that are "quoted" ?
I have several tables in my Oracle database that have quoted names and columns CREATE TABLE "Example" ("Col1" varchar2(50), "col2" varchar2(50) ); When liquibase generates the changelog, I lose the...
View ArticleRe : How does Liquibase handle Oracle Tables and columns that are "quoted" ?
There are two things to check. The first is to check whether the changelog being generated has the correct case. Hopefully it should. Once you have confirmed that, there is an attribute you can apply...
View ArticleRe : Just starting with Liquibase - please help.
Hi Steve, Thanks for your response : 1. I have tried using liquibase.properties file. It seems that Liquibase just ignores this file. 2. I have tested the URL on SQuirrel and the connection...
View ArticleRe : Just starting with Liquibase - please help.
If Liquibase seems to be ignoring the file, you are doing something incorrectly. It does work - I use that functionality every day. If you can include exactly what you tried, I might be able to help...
View ArticleHow to load BLOB file into Oracle DB
Hello, I would like to load blob files with Liquibase but I didn't find any way to do it. Is it a functionality available into 3.2.2 version ? Thanks, Mohamed
View ArticleRe : How to load BLOB file into Oracle DB
Hello, This is available via this type of changeSet : <insert tableName="TEST_BLOB"> <column name="a" valueBlobFile="01_Capture.png"/> </insert> by using the xsd 3.0...
View ArticleRe : Just starting with Liquibase - please help.
The problem was created by the backslash in Windows operating system. Thanks.
View ArticleRe : Just starting with Liquibase - please help.
Excellent - glad you got it figured out. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleUsing preconditions in my changeLog
I want different changesets within my changeLog to run depending on where I am in the full software upgrade process. I was hoping to use a new table called release_table to save the state of the...
View ArticleRun Migrator pulling changelogs from a .JAR file (Spring boot)
Hi, I have Spring boot Jar application with changelogs inside the jar. I want to run updateSQL command with command line. Is it possible? Thx
View ArticleRe : Run Migrator pulling changelogs from a .JAR file (Spring boot)
I believe this is possible, but I am not certain of the exact commands and where in the jar file the changelogs should be located. It would most likely involve listing the jar with the changelogs as...
View ArticleRe : Run Migrator pulling changelogs from a .JAR file (Spring boot)
I tried the following : java -jar liquibase.jar --driver=com.mysql.jdbc.Driver --classpath=myapplication.jar --changeLogFile=/liquibase/current-changelog.xml --url=jdbc:mysql://localhost/liquibase...
View ArticleRe : Run Migrator pulling changelogs from a .JAR file (Spring boot)
Excellent - seeing what you actually did and what errors happened is super helpful. The problem you are habing now is because the mysql driver jar is not on the classpath. You would need to do...
View ArticleRe : Run Migrator pulling changelogs from a .JAR file (Spring boot)
Hi Steve It doesn't work I got : mysql-connector-java-5.1.34.jar: command not found Any ideas?
View ArticleRe : Making LiquiBase work with Netezza
We have been using Liquibase for quite some time for Postgres databases. Enjoying Liquibase so much, we decided to write an extension for Netezza so we could use it for other projects as well. It's...
View ArticleRe : Adding Netezza extension - problem trying to get "generateChangeLog" to...
Hi Robert, We wrote an extension for Netezza. It's available on maven central and github: http://search.maven.org/#artifactdetails|nl.inergy.liquibase|liquibase-netezza|1.0.0|jar...
View ArticleRe : Run Migrator pulling changelogs from a .JAR file (Spring boot)
Can you show me the command that you used? In general, whenever reporting a problem, you should always include three things: 1. This is what I did 2. This is what actually happened 3. This is what I...
View ArticleNot able to generate rollback scripts by tag in offline mode
I am trying to generate a rollback script by rollbackTag using maven liquibase plugin as follows in offline mode. It failed to find a tag in offline database(nothing but a changelog.csv file generated...
View ArticleNot able to generate rollback scripts by tag in offline mode
I am trying to generate a rollback script by rollbackTag using maven liquibase plugin as follows in offline mode. It failed to find a tag in offline database(nothing but a changelog.csv file generated...
View ArticleRe : Not able to generate rollback scripts by tag in offline mode
I am not clear what you are trying to do - what are the exact commands you used, and what are the relavant input files used? I am not clear what your expected result is, nor is it clear what the...
View Article