CustomChange(Wrapper?) question
Hi !I have a set of testdata (csv) and during load I would like to manipulate some fields (e.g.: dates). Using CustomChange I must implement all the csv->jdbc statement steps, while LoadDataChange...
View ArticleRe : CustomChange(Wrapper?) question
CustomChange is for implementing a refactoring not currently supported, like User Defined Datatypes.For this case, I would recommend having the CSV file simple match the table your are importing the...
View ArticleRe : CustomChange(Wrapper?) question
Yes indeed, but we want the test writer to permute the data (test)runtime to avoid store hundreds of loader files in the project and repository...I wrote a working solution as a liquibase extension...
View ArticleSetting properties in a unit test
I tried setting the liquibase.changeLogLockWaitTimeInMinutes properties in a unit test to not have to wait 5 minutes for a unit test to complete, but setting it as a system property didn't work:...
View ArticleWhat are the Java version requirements for Liquibase 3.7 and 3.8 (and future...
Is there any documentation available about Java version requirements for Liquibase releases?
View ArticleRe : What are the Java version requirements for Liquibase 3.7 and 3.8 (and...
Which Java version in particular do you use?
View ArticleRe : What are the Java version requirements for Liquibase 3.7 and 3.8 (and...
No, there is not currently any documentation on this. That is an oversight! We will address that shortly.Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View Article[ERROR] Object 'DATABASECHANGELOG' already exists FOR case sensitive schema...
I have been able to connect and run mvn liquibase:update using UPPERCASE SCHEMA NAME eg. (TEST_ISH), but once I start using MIXED CASE SCHEMA Name eg. (Test_Ish), I can only run mvn liquibase:update...
View ArticleChangelog Parameter help
I use changelog parameter, the value is a select statement. How to get the select statement to execute? When reference the property in the changeset, it's the whole select statement, not the result...
View ArticleRe : Changelog Parameter help
Can you provide more specifics or an example? What is the end goal you are trying to accomplish?Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : Changelog Parameter help
I have partition table and the goal is to dynamically compose the next partition_name and valueseg: - property: name: numUid value: 1000 context: dev- property: name: numUid value: 2000...
View Articlejdbc error
tion:248) - ./liquibase.sh RD "jdbc:oracle:thin:@//test.test.com:1521/database" DDRSTG ***** "database.changelog-master.xml"2019-10-18 12:27:34,474 [job-12982604-jobServer-12985537-2:Run update...
View ArticleHow to use liquibase cmd with db2 ssl connection?
I'm trying to run liquibase update command usingliquibase --driver="com.ibm.db2.jcc.DB2Driver" --changeLogFile="masterchangelog.xml "...
View ArticleHow to make liquibase use an existing table
I am using liquibase directly in Java.I am setting a change log table name as I have an existing table I want to use.Liquibase fails to create a snapshot from existing table and tries to create the...
View ArticleRe : How to make liquibase use an existing table
This sounds like a fairly technical issue. What mechanism are you using to set the change log table name?I'm not clear what you mean by "Liquibase fails to create a snapshot from existing table" - I...
View ArticleRe : How to make liquibase use an existing table
Hi Steve,I set the custom name using the setDatabaseChangeLogTableName on the Database Object.Regarding the snapshot, I see using debug that during the database.update run it tries to initialize the...
View ArticleHow could i have changeLog in YAML Format
Hi,How could i have changeLog in YAML Format not in XML ?RegardsPhil
View ArticleLiquibase internal table
HiI have reading that Liquibase use two internal table, which name are theses tables ?Could i move them in an special database outside my schema ?Regards
View Articleavoid liquibase.properties in maven Plugin
Hi,My application is an SpringBoot2 application with YAML configuration file.Could i avoid configuring too an liquibase.properties file in maven plugin ?RegardsPhil
View ArticleRe : How could i have changeLog in YAML Format
That's kind of a broad question. Do you already know how to do things in XML? Do you have an existing database you are starting with, or are you starting with a new project and an empty database? The...
View Article