Re : How to generate rename column instead of drop column
Hu Luan,this is exactly the reason why automatic change management does not work. I've never seen a tool that is able to distinguish a rename vs. drop and add (works for columns or for tables). This...
View ArticleRe : How to configure alternate liquibase control tables (DATABASECHANGELOG &...
Did you check permissions? Maybe you are using a different user that does not see the table but it s already there.Or are there any synonyms around, that may be a problem too?
View ArticleRe : Rollback multiple Update
I don't think that this is possible to do automatically.First and foremost if you think of a generic rollback there needs to be information about the old state of the data you manipulated with the...
View ArticleRe : How to generate rename column instead of drop column
Hi Danial,Thank you.It means we cannot use rename column automatically. Of course, I think it's hard for Liquibase to know when it should drop or add or rename a table/column.
View ArticleRe : Bug fix for CORE-2944
Yeah, sorry. Have been extra busy at work the last few months. I'll take a look, thanks for your patience and reminder.Nathan
View ArticleOracle Wallet
I have finally been able to make liquibase aware of oracle wallet. I am running Oracle 11.2. The whole command is in one line,but I am showing it in multiple lines for clarity: mvn -X -e...
View ArticleRe : How to configure alternate liquibase control tables (DATABASECHANGELOG &...
Thanks Daniel. I stumbled upon a solution and I believe its an oracle-specific issue. When connected with Oracle database, the configured table names specified SHOULD be in ALL CAPS for it to be...
View ArticleRe : Configurable DATABASECHANGELOG table name ?
Thanks Gavriel - your example was super helpful to get me going.I hit this weird issue when attempting to configure liquibase control tables against an Oracle database (in first run control tables were...
View ArticleLiquibase does not create indexed view for an empty database
CREATE TABLE dbo.testTable ( ID nchar(10) NOT NULL, TestDate datetime2(3) NULL ) go ALTER TABLE dbo.testTable ADD CONSTRAINT PK_testTable PRIMARY KEY( ID)GO CREATE VIEW dbo.vw_test WITH SCHEMABINDING...
View ArticleArrayIndexOutOfBoundsException on plpgsql anonymous blocks
Is there a trick to executing anonymous plpgsql blocks in Liquibase? I have the following YAML file:databaseChangeLog: - changeSet: id: dcrews:1 runOnChange: true runInTransaction: true...
View ArticleMultiple Configurations in liquibase-maven-plugin
Hi together,I am trying to configure the maven plugin (3.5.3) to run two different configurations on the same DB (but different user and different changelog).My current code for a single configuration...
View ArticleRe : Multiple Configurations in liquibase-maven-plugin
Can you post the two executions example so it can be verified?
View ArticleRe : Multiple Configurations in liquibase-maven-plugin
Hi Daniel,I wanted to do it like here http://stackoverflow.com/questions/4865767/liquibase-using-maven-with-two-databases<plugin> <groupId>org.liquibase</groupId>...
View ArticleRe : ArrayIndexOutOfBoundsException on plpgsql anonymous blocks
As a workaround, using the "sql" change object instead of "sqlFile" gets me past the exception. But that's far from a perfect solution. How can I create a bug report?
View ArticleRe : ArrayIndexOutOfBoundsException on plpgsql anonymous blocks
Thanks for finiding that - you can report bugs at https://liquibase.jira.com/projects/CORE/Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleLiquibase handling Default data and then adding data from hibernate in same...
I am using liquibase to insert default user in database in admin table. I am using my web application (Spring boot, Hibernate ) to register new users. After populating database with default admin user,...
View Article2 classpath questions
1. I'm trying to use the teradata extension: https://github.com/liquibase/liquibase-teradata/wikiWhat is meant by "Simply add the liquibase-teradata.jar file to your classpath"? The only way I have...
View ArticleGenerateChangeLog Error with HANA database
Hi..I am trying the 'GenerateChangeLog' option to the current SAP HANA Database. Properties File:driver: com.sap.db.jdbc.Driverclasspath:...
View ArticleRe : 2 classpath questions
How the classpath is constructed differs depending on how you are using Liquibase. Are you using the liquibase bat/shell scripts? From Windows or Linux? Are you using maven? Are you using something...
View Article