Re : Support for Hive (Hadoop) schema changes via Liquibase?
I don't know enough about Hive/Hadoop to provide a definitive answer, but in general Liquibase is extensible to new database types. In version 3.x there is still some database-specific code in...
View ArticleRe : A single user for all schemas?
We have slightly different setup; we don't use Oracle or settings.xml, but we do have a similar issue with superuser access and multiple schemas and maven. For us our username/passwords are setup in a...
View ArticleDrop All Database Objects fail in liquibase
when i am trying to **drop all objects from a database using Liquibase**, its getting error. After running in debug mode i found that its trying to drop sequence after dropping table. So get a error '...
View ArticleRe : Understanding validCheckSum
This is STILL wrong in the manual...http://www.liquibase.org/documentation/changeset.html When comparing the changeSet stored in the database with the checksum generated from the current changeSet, do...
View ArticleDid I create Jira / pull request correctly?
Hi, all. I've followed the guidelines on the Liquibase DEV page as best I can. Can someone cross check that I've done things right? Here's what I did: 1) Registered as a user with Atlassian Cloud so...
View ArticleRe : Did I create Jira / pull request correctly?
Looks like you did everything correctly to me. I know Nathan is pretty busy, so it might be a few days before this gets merged, etc. You will not need to clone again to do more work. You will need to...
View ArticleRe : Did I create Jira / pull request correctly?
OK - turns out I missed a step. For multiple pull requests from the same fork, each change should be checked into a separate branch of the forked code. Otherwise, subsequent checkins to the base of...
View ArticleGenerate SQL from ChangeLog using API and being Offline
Hello, I am trying to merely convert ChangeLog into an SQL file using the Java API. I tried something like: Database database = DatabaseFactory.getInstance() .findCorrectDatabaseImplementation(new...
View ArticleUpdateSQL ignores dbms type?
We have a setup where we sometimes need our database in MSSQL, and other times in HSQL. We'd like to have one file that could run against either DB and react accordingly to the nuances of either. We...
View ArticleRe : Generate SQL from ChangeLog using API and being Offline
Same problem with Liquibase command line liquibase --changeLogFile /path/to/changeLog.xml --url offline:oracle updateSQL Unexpected error running Liquibase: java.lang.NoSuchMethodException:...
View ArticleRe : Generate SQL from ChangeLog using API and being Offline
I guess it's bug in OracleDatabase#setConnection because using MySQL instead of Oracle, I have no problem.
View ArticleRe : YAML update fails with Unexpected error running Liquibase:...
Slow response, but I created https://liquibase.jira.com/browse/CORE-2275 to track the issue. Thanks for reporting it. Nathan
View ArticleRe : FILENAME column in databasechangelog table.
Sorry for the slow response. Have you tried it with Liquibase 3.3.2? When I try replicating your setup, it is checking files with the relative path. It may have been something fixed in 3.3. If you run...
View ArticleRe : Using Liquibase 3.3.2 with Vertica 7.1 : java.lang.NoSuchMethodError:...
The vertica extension is managed separately from Liquibase. It may work best to file an issue at https://github.com/cohenjo/liquibase-vertica Nathan
View ArticleRe : How to create a "super"-table which will be always created infront of...
This seems like a fairly safe addition, so it seems likely that it could be included into the project mainline. If you include unit tests for the change and ensure that no existing tests break, the...
View ArticleRe : UpdateSQL ignores dbms type?
It should be respecting the dbms attribute in updateSQL. What version of liquibase are you running? Nathan
View ArticleRe : Drop All Database Objects fail in liquibase
I see you created https://liquibase.jira.com/browse/CORE-2256 for this, thanks. Nathan
View ArticleRe : Support for Hive (Hadoop) schema changes via Liquibase?
Yes, support for Hive changes are definitely possible. The existing 3.x extension system should allow you to plug something in but like Steve says I am busily working on larger changes with 4.x that...
View ArticleRe : Liquibase gives different results from Ant and the command line
I added a comment to the stackoverflow post. Sorry for the slow response.
View Article