Adding Netezza extension - problem trying to get "generateChangeLog" to work...
Hi there, I am building an extension to support Netezza, an IBM database. I am trying to get the "generateChangeLog" function to work, however in order to do so it seems that I need to modify at least...
View ArticleCannot find parser that supports
I am getting a Liquibase exception when running update. Caused by: liquibase.exception.UnknownChangelogFormatException: Cannot find parser that supports <?xml version="1.0" encoding="UTF-8"...
View ArticleRe : Cannot find parser that supports
Answered on StackOverflow: http://stackoverflow.com/questions/33022755/liquibase-cannot-find-parser/33024865#33024865 Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRun external .sql script from formatted sql changelog
Can I run external .sql script from formatted sql changelog? In xml changelog I can use sqlFile or execute command, but I don't wont to use xml changelog.
View ArticleRe : how to specify author for changelog when using generateChangeLog &...
Thanks for noticing that. I will submit a pull request with updated docs. If you are interested, all the documentation is in github, and Nathan welcomes pull requests....
View ArticleRe : New Line character not able to load using Load Data
The csv parser will accept newlines if they are in quotes. Neil
View ArticleCDILiquibase not reliable working
Hello together, hopefully someone can help me? I have following code, which is failing on startup: @Dependent @NoArgsConstructor @Slf4j public class InitSystemLiquibase { /** the {@link DataSource}....
View ArticleRe : how to specify author for changelog when using generateChangeLog &...
I'll take a look thank you :)
View ArticleError with parameters generateChangelog command
Hi. I'm trying to execute the following command : liquibase.bat --changeSetAuthor=Paulo --changeLogFile=C:\Users\paulo.tavares\Documents\Visual Studio...
View ArticleRe : Error with parameters generateChangelog command
Can you include the actual error message? As a first guess, I would say that the problem is probably with the spaces in the different file paths. You probably need quotes around those. So rather than:...
View ArticleRe : Error with parameters generateChangelog command
Yeah, I ended up figuring out that was the deal. Thanks anyway :)
View ArticleHow to add JSONB columns for PostgreSQL?
Hello, I am having trouble finding the syntax to create PostgreSQL JSONB columns in a new table. Is this supported? If not, how can I get this to work? Just run a raw SQL query? Thanks
View ArticleLarge Oracle DML PL/SQL based app - suitable for Liquibase ?
My company is an Oracle shop with a large (1300 pkgs, 350k LOC, 1700 triggers) PL/SQL-based app. Source is currently managed in SVN and a Python script is used to package source changes and generate a...
View ArticlediffChangeLog Command output resulted changesets on console or separated file.
Hi, I'm looking for a way of using the diffChangelog command without using the standard changelog file. I want to be able to separate the resulted changesets from the main changelog and instead I want...
View ArticleRe : Large Oracle DML PL/SQL based app - suitable for Liquibase ?
It sounds like you should talk to the Datical sales reps. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : Large Oracle DML PL/SQL based app - suitable for Liquibase ?
...that said, we do typically work more with folks running Java (or other language) applications that use Oracle and other databases, and that are using Datical for managing schema change. We have some...
View ArticleLiquiBase adding multiple columns in PostgreSQL
Hello there, I am yet to use/implement LiquiBase tool for our PostgreSQL databases. One question i have is - Can LiquiBase be used to add multiple columns part of one changeset all at a time generating...
View ArticleRe : LiquiBase adding multiple columns in PostgreSQL
You are correct - Liquibase will generate individual alter table statements, one for each column added. Steve DoniePrincipal Software EngineerDatical, Inc. http://www.datical.com/
View ArticleRe : LiquiBase adding multiple columns in PostgreSQL
Thanks Steve ! Recently, one of customers were adding multiple columns to a big table with 15m rows and were looking at speeding up the process. We could not manage to club all the "ALTER TABLE.. ADD...
View ArticleRe : LiquiBase adding multiple columns in PostgreSQL
I was going to suggest that you submit a pull request to fix this, but it appears that someone beat you to it! I went and looked at the history for the class that generates the SQL for adding columns,...
View Article