Re : Unable to tag the database using Liquibase for future rollback
Any chance you found a solution for this as I keep getting schema error when I add tagDatabase to the xml?
View ArticleRe : Problem: Oracle Case-Sensitive Columns Liquibase v3.0.7
I would like to be able to extend the liquibase.database.core.OracleDatabase Class to override the "isReservedWord" Method to work around this issue without modifying my changeSet statements.My current...
View ArticleRe : Problem: Oracle Case-Sensitive Columns Liquibase v3.0.7
Hard to tell if you did something wrong without seeing what you did. Have you debugged through it to see what the code is doing?Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : Problem: Oracle Case-Sensitive Columns Liquibase v3.0.7
Turns out I did something wrong. My database extension was placed in the package liquibase.ext.database instead of liquibase.database.ext as specified in...
View ArticleProblem: Updateset timeout on huge databases
Hello! We are using liquibase with a java web application with MySQL database. One of the tables of the database has more than 1m entities, so if we want to add a new column to the table it takes more...
View ArticleRunning liquibase update from springboot app jar
hello,I have a SpringBoot app with liquibase embedded to upgrade db. Currently, it executes db updates on app startup. Instead, I want to execute updates manually on demand. Is it possible run updates...
View ArticleDetecting Failed Change Sets During automated build process
I seem to be missing some very basic functionality using Liquibase. I simply need my automated build process to FAIL whenever one of the sql changesets fail during execution. No matter what i do,...
View ArticleRe : Problem: Updateset timeout on huge databases
JDBC is unlikely to drop connections on timeout of 2 minutes (there is a default socketTimeout of 0 - never time out)Is that a JDBC connection timeout or MySQL config issue? Can you run the same update...
View ArticleRe : Detecting Failed Change Sets During automated build process
Liquibase should return non-zero error codes for failures. Can you give me a bit more info on what you are running? Is it the liquibase 3.8.0 CLI running "update"? And, what database are you using?Nathan
View ArticleException in thread "main" java.lang.NoClassDefFoundError:
java -jar ./liquibase.jar --driver=com.oracle.ojdbc8...
View ArticleRe : Exception in thread "main" java.lang.NoClassDefFoundError:
You need to also include the "lib" directory that ships with Liquibase. You're looking for the lib directory that contains slf4j-api-1.7.25.jar, among other things.Let us know if that resolves the issue.
View ArticleWhat is the advantage I will get by using liquibase instead of keeping SQL...
Hello,I need to know the advantages of using liquibaseliquibase uses XML file which is kept on git but I can still maintain raw SQL versioning on git.Also liquibase rollback also needs XML file even...
View ArticleRe : Exception in thread "main" java.lang.NoClassDefFoundError:
I had included the self4j-api.1.7.25 as external jar when I had build it but still same error. Also tried the following tooD:\Liquibase3.8.0>set path=%path%;D:\Liquibase3.8.0\lib;java -jar...
View ArticleRe : Exception in thread "main" java.lang.NoClassDefFoundError:
Rather than calling java directly, it is much easier to use the provided liquibase.bat file that ships with the liquibase zip file. That batch file will automatically build your classpath using the...
View ArticleRe : What is the advantage I will get by using liquibase instead of keeping...
The first advantage is that liquibase keeps track of which SQL scripts (which in liquibase parlance are known as changesets) have been deployed to any given database instance, which if you are doing...
View ArticleRe : Exception in thread "main" java.lang.NoClassDefFoundError:
liquibase --classpath="C:\Users\Axxx\.m2\repository\com\oracle\ojdbc8\12.2.0.1\ojdbc8-12.2.0.1.jar;D:\Liquibase\liquibase\target\liquibase-0.0.1-SNAPSHOT.jar"...
View ArticleRe : What is the advantage I will get by using liquibase instead of keeping...
Hello Steve,Good day!!Can I use SQL statements directly in liquibase & those SQL changes being tracked ?
View ArticleRe : Exception in thread "main" java.lang.NoClassDefFoundError:
No it didn't resolve the issue.
View ArticleRe : What is the advantage I will get by using liquibase instead of keeping...
Yes, you can. There is a tutorial showing the basics of doing that at https://www.liquibase.org/quickstart.htmlAfter reading and following the first page, follow the link about using Liquibase with SQL...
View ArticleRe : Exception in thread "main" java.lang.NoClassDefFoundError:
One way to see would be to edit the liquibase.bat file. The last line in liquibase.bat looks like this:java -cp "%CP%" %JAVA_OPTS% liquibase.integration.commandline.Main %CMD_LINE_ARGS%Change that to...
View Article