Re : Using Liquibase on Teradata 14.
Hi Steve, Thanks for responding. Here is the property file I am using: driver=com.teradata.jdbc.TeraDriver classpath=liquibase.jar;terajdbc4.jar;tdgssconfig.jar;liquibase-teradata-3.0.jar...
View ArticleRe : Using Liquibase on Teradata 14.
It seems to be expecting to find an information_schema which probably doesn't exist in teradata. Can you run with --logLevel=DEBUG and post the full stackTrace you are getting? Nathan
View ArticleRe : Using Liquibase on Teradata 14.
I did that and no stackTrace came out D:\liquibase-3.2.2-binTeradata>liquibase --changeLogFile=D_THTR_DM_S.xml generateChangeLog --logLevel=DEBUG Unexpected error running Liquibase:...
View ArticleRe : Using Liquibase on Teradata 14.
Ok I got the debug to work, here it is: D:\liquibase-3.2.2-binTeradata>liquibase --logLevel=DEBUG --changeLogFile=D_THTR _DM_S.xml generateChangeLog DEBUG 9/18/14 1:24 PM: liquibase: Connected to...
View ArticleRe : Using Liquibase on Teradata 14.
I looked at the Teradata code on Github and it doesn't seem to mention the string 'information_schema' anywhere. Steve Donie Principal Software Engineer Datical, Inc. http://www.datical.com/
View ArticleRe : Using Liquibase on Teradata 14.
Am I missing some drivers or using the wrong ones? Here where I downloaded the following: Liquibase : http://sourceforge.net/projects/liquibase/files/Liquibase%20Core/liquibase-3.2.2-bin.zip/download...
View ArticleRe : Using Liquibase on Teradata 14.
On further review, it looks like the Teradata extension does not support any snapshot logic which would include generateChangeLog, unfortunately. The Teradata support was contributed code and I thought...
View ArticleRe : Using Liquibase on Teradata 14.
Nathan Thank you so much for the info. Since the Teradata extension is a contributed code, does this mean that this won't have a fix to work with ChangeLog/GenreateChangeLog commands? Thanks Chris
View ArticleRe : Using Liquibase on Teradata 14.
Support can certainly be implemented, it's just that I don't have a local teradata database currently to test against in order to do the work myself. I may be able to get to it at some point, but it...
View ArticleHow to apply programatically only change sets which wasn't run?
I try to update existing DB in this way: Database database = DatabaseFactory.getInstance().findCorrectDatabaseImplementation( new JdbcConnection( connection ) ); Liquibase liquibase = new Liquibase(...
View Articleduplicate identifiers
Hi gurus, I have been using liquibase for longer than a year now, and have a pretty large project organized into several databasechangelog files, which are later combined into a larger one by means of...
View ArticleRe : duplicate identifiers
There is not a configuration setting or workaround that I know of. I'm curious though why you would want this behavior. If you have two things with duplicate identifiers, how should the system decide...
View ArticleRe : duplicate identifiers
Thanks for your answer Steve. I am not quite sure if it was a good idea, but in order to allow "rebasing" in the future, we did something like this. base version x ( typical liquibase usage )....
View ArticleLiquibase liquibase-maven-plugin does not run Integration Tests in Apache Maven
Hi I am using Liquibase. I want the database tables to be created before the Integration Tests. What I can see is that the Integration Tests are not being run and the liquibase-maven-plugin version...
View ArticlepreConditions doesn't work
I was hoping that this was already fixed, but it seems that it wasn't: https://liquibase.jira.com/browse/CORE-1992 Is there any workaround for this? There are changesets I can only run if a table or...
View ArticleValidation and Output
Hi, In the old sql script we had a validation ( just check if there is any invalid object in the database ), and after the validation if there is any invalid object we were printing the result with the...
View ArticleRe : Informix issues
Hi Nathan, I had some further issues with the Informix support and I decided the fastest way for us to be able to use Liquibase was to fix them myself. I set up a pull request here:...
View ArticleRe : Informix issues
I got your pull request, and thanks for doing the work. They are definitely the easiest way to get a fix in. Nathan
View ArticleRe : Liquibase liquibase-maven-plugin does not run Integration Tests in...
What Maven goal do you run to cause this problem? This sounds like a configuration problem. You have the Liquibase plugin set to run in the pre-integration-test phase which means you will need to...
View ArticleRe : Liquibase liquibase-maven-plugin does not run Integration Tests in...
I have run the mvn integration-test phase on the Command Prompt but still there are problems. It throws the following Exception: Caused by: org.hibernate.HibernateException: Missing table: employee...
View Article