Re : Liquibase internal table
The two tables are DATABASECHANGELOG and DATABASECHANGELOGLOCK. They are described in the documentation at https://www.liquibase.org/documentation/databasechangelog_table.html and...
View ArticleChangeset checksum validation failed with same md5sum value
Hi Everyone,We are using liquibase-core 3.4.1 version. we are migrating the db changes through the changelog sql file for postgres database. Below is the code for migration. liquibase = new...
View ArticleRe : Changeset checksum validation failed with same md5sum value
Could you show the actual error message and the contents of the DATABASECHANGELOG table? Please remove any sensitive info from the logs if needed. Steve DoniePrincipal Software EngineerDatical, Inc....
View ArticleRe : Changeset checksum validation failed with same md5sum value
Hi Steve, I tried to print the checksum values current Changeset and old Changeset ( RanChangeset) for the changeset which are failed during the validation.The RanChangeSet checksum value is different...
View ArticleRe : Changeset checksum validation failed with same md5sum value
What happened when you tried? Did it fail? I'm still not clear what your error is. The reason that you get that error message is that some changesets have been deployed to a database. At the time they...
View ArticleRe : Changeset checksum validation failed with same md5sum value
Thanks for answering the question.We did update the version of liquibase version and it is 3.41. Below is the databasechangelog record for the existing changeset which is failing. id author filename...
View ArticleRe : How could i have changeLog in YAML Format
HiI have an existing ORACLE database and i am new to LIQUIBASE, i want generat YAML filesRegards
View ArticleHandling MemSQL stored procedures using liquibase mvn plugin
I have a stored procedures for MemSQL which require the the usage of keyword 'DELIMITER' in my sql file. Code snippet is as below. DELIMITER /CREATE OR REPLACE PROCEDURE...
View ArticleRe : Handling MemSQL stored procedures using liquibase mvn plugin
What does your changelog look like? Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : Handling MemSQL stored procedures using liquibase mvn plugin
<changeSet author="test" id="stored-procedure-1" runAlways="true"> <sqlFile endDelimiter=";" relativeToChangelogFile="true"...
View ArticleRe : Handling MemSQL stored procedures using liquibase mvn plugin
OK - I think if you change the sqlFile endDelimiter attribute to slash rather than semicolon you should be good to go. You may also need to remove the final `DELIMTER ;` line from the...
View Articleliquibase integration with BAMBOO
HiOk , i have changed my Pom and added maven plugin and DB ConfigurationAnd for my SpringBoot2 application i have changed my application.yml tooBut NowI need to integrate liquibase with BAMBOO to...
View ArticleRe : liquibase integration with BAMBOO
Glad to hear that you've resolved things!Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : Handling MemSQL stored procedures using liquibase mvn plugin
Steve,I tried changing the delimiter in the changelog and removing the last 'DELIMITER ;' in my sql file. It still fails with the same error.To add, in my pom, i have two executions, one with goal of...
View ArticleRe : How could i have changeLog in YAML Format
I would start by looking at this page in the documentation - it describes what you need to do for the most part.https://www.liquibase.org/documentation/existing_project.htmlThe example there could be...
View ArticleUnknown anomaly
Execute liquibase with Maven: generatechangelog without errorDatabase generated databasechangelog and databasechangeloglock, but databasechangelog did not create records用Maven执行...
View ArticleChange database content
HiCould i use liquibase to change datas in database ?I want changing an user's password ?RegardsPhil
View ArticleSpringBoot ptoject Rollback
Hi,If i rollback my WAR SpringBoot2 project. Database is automatically rollbacked too or not, when old project version is restarted ?Regards
View ArticleRe : Unknown anomaly
I'm not completely clear what you mean by "Database generated databasechangelog and databasechangeloglock, but databasechangelog did not create records"If you mean that the DATABASECHANGELOG table does...
View ArticleRe : Change database content
While you COULD use Liquibase for doing this, I would not recommend this. In general, Liquibase should be used for:* changing the structure of your database (what tables exist, the columns, etc.) *...
View Article