Re : Grants with Oracle
I read some forum posts and did more googling. Here are some additional details1: I'm now running it as they "system" user which is at least getting me connected to oracle just fine.2: I'm calling my...
View ArticleRe : Grants with Oracle
I think the problems is that liquibase does not try to split up the SQL in your <sql> block into the two statements that there is and just passes it along to Oracle which expects it to be just...
View ArticleRe : Error running dbDoc on a Sybase database
Can you try it with Liquibase 3.1.0? There were some improvements to sybase handling that may have fixed the problem.Nathan
View ArticleRe : Need to have better control of type generation for a specific database
Thanks, Nathan.In order to generate SQL I wanted I just added two classes to my application:package liquibase.ext.datatype;import liquibase.database.Database;import...
View ArticleRe : Error running dbDoc on a Sybase database
I have downloaded and installed 3.1.0 and the doc command now works. Thanks.However I am having problems with my next test. I am trying the "diff" command. I am diffing the same schema on 2 dataservers...
View ArticleRe : Error running dbDoc on a Sybase database
I have been looking into this and I think that the problem is something to do with the Snapshot generation.As far as I can tell (and I am just looking at this codebase for the first time) the Snapshot...
View ArticleDefine changeLogFile location through classpathscanning in java
Hi,I'm new to Liquibase and this forum.I try to initiate my Liquibase instance from javacode, but for some reason it cannot find my changeLogFile.final String changeLogFile =...
View ArticleRe : PostgreSQL timezone format
According to postgres documentation default for timestamp is wothout timezone NOT withhttp://www.postgresql.org/docs/9.2/static/datatype-datetime.htmlI've made a simple patch for this problem: diff...
View ArticleWhat privilege is required for preConditions in MySQL
I am trying to use tableExists and columnExists preconditions, the database engine is MySQL 5.x. It turns out that DB user running the change log must have "super" privilege, otherwise execution fails...
View ArticleRe : Liquibase is trying to execute SQL that is commented out.
That makes sense. Thanks!jeff.
View ArticleRe : Grants with Oracle
That worked perfectly.Now for a weird question, when I execute this as the "system" user , where does the databasechangelog table get created? I seem to find it anywhere.
View ArticleLiquibase 3.1 and SpringLiquibase
I'm running into an issue where liquibase update runs fine for me if I run through ant or the command line. I'm trying to also run an update at app startup using the SpringLiquibase bean but I'm...
View ArticleRe : What privilege is required for preConditions in MySQL
You can run liquibase with --logLevel=debug and it should output the sql that is being ran. Most of the queries to get metadata, however, come from the JDBC driver's implementation which isn't shown in...
View ArticleRe : Grants with Oracle
if you are not specifying a liquibaseSchema parameter, it is just created as "create table DATABASECHANGELOG" without a specified schema. Is there default schema for the SYSTEM user besides SYSTEM?Nathan
View ArticleRe : Liquibase 3.1 and SpringLiquibase
Glad you figured it out. Thanks for the update.Nathan
View ArticleRe : Error running dbDoc on a Sybase database
As you make progress, make sure to send a pull request on github so I can get it incorporated.Nathan
View ArticleRe : Need to have better control of type generation for a specific database
Thanks for posting the code. It should help others down the road.Nathan
View ArticleRe : Has anyone managed to load any stored procs through Liquibase in to DB2
What is the error you gettin?
View ArticleRe : Offering a "builder" pattern for...
That is a good idea. I haven't liked the CommandLineUtils. I created https://liquibase.jira.com/browse/CORE-1717 and will plan it for 3.2.0Nathan
View ArticleDrizzle JDBC Driver support w/ MySQL
I've found that if I use the Drizzle JDBC driver with MySQL liquibase fails. It generally works fine in that I can apply my change log, but on subsequent runs it can not find the DATABASECHANGELOG...
View Article