Re : Modify data type from varchar to Blob in Sybase.
Liquibase doesn't try to do anything beyond the sql you are seeing in the log. It looks like it got cut off in what you posted, but the data conversion is failing in sybase.Compare the generated SQL to...
View ArticleRe : Manipulating data depending on ran changesets
What isn't working? I'm not quite following what you are trying to do and what you are seeing happen.Nathan
View ArticleRe : Automating deployment of parallel multitenant schemas
CORE-1472 probably doesn't apply in your case if you don't see how it would fit.A shell script would probably work best for you. There is nothing built in to liquibase to support iterating over a...
View ArticleRe : Save a view definition as part of a changeset
There is no support in liquibase to save and then recreate a view. There is also not a way to make a new changeSet with a "re-run this changeSet" change. If you have the view already defined in your...
View ArticleRe : How to specify rollback in YAML changelog file?
It looks like was broken in 3.x. It should be fixed in 3.1 which will be out tomorrow.Nathan
View ArticleRe : Manipulating data depending on ran changesets
I want to insert a computed value into my database once a specific changeset ran. So I tried registering a ChangeExecListener hoping, that its method 'ran' is called after the changeset ran so I can...
View ArticleRe : PostgreSQL timezone format
https://liquibase.jira.com/browse/CORE-1695 seems to be related to issue http://liquibase.jira.com/browse/CORE-877 found in similar thread: You can mark this relation in your JIRA if you like.
View ArticleRe : How to specify rollback in YAML changelog file?
Thank you very much! I'll wait the next release.
View ArticleChangelog Organization Best Practice
Hi,I have a question around the naming and organization of changelogsAssume the scenario that I start with a full schema in changelog in the version 1.0.0. I keep on releasing new versions of the...
View ArticleRe : Manipulating data depending on ran changesets
How are you registering the listener? In your example you just have "// changeExecListener"Are you calling liquibase.setChangeExecListener(changeExecListener) before you call liquibase.update() ?Nathan
View ArticleRe : Automating deployment of parallel multitenant schemas
Thanks much Nathan. Appreciate it!
View ArticleRe : Manipulating data depending on ran changesets
Yes, I do. The latter code is inserted in the upper code at the position of the comment.
View ArticleH2 drop table with cascade
Hi guys,I got an issue with the "cascadeConstraints" attribute of the dropTable change. According to the documentation on the website the "cascadeConstraints" attribute should be supported for the H2...
View ArticleLiquibase is trying to execute SQL that is commented out.
Hi,I'm using Lb from the command line up against Oracle 11g on a remote server.The gist of my problem is, I have lines of sql commented out with "--" at the start but it seems to me Liquibase is...
View ArticleRe : Custom SQL file and multine comments
Ithink the issue i just posted has some commonalities with yours..https://forum.liquibase.org/#Topic/49382000000988003
View ArticleI have some trouble with Liquibase commandline with oracle
I have that structure:c:----> ProgramFiles--------> Liquibased:----> db--------> changelog------------> db.changelog.xml (here I have my first migration justo for test)<?xml...
View ArticleRe : Liquibase is trying to execute SQL that is commented out.
Well, i wasn't logged in when i posted this, so i'm just commenting on myself so i can follow it.
View ArticleRe : Liquibase is trying to execute SQL that is commented out.
Forgot to click follow. sigh. Friday.
View ArticleNeed to have better control of type generation for a specific database
Hello, I have following changeset: <changeSet author="author" id="id"> <createTable tableName="TABLE1"> <column autoIncrement="true" name="ID"...
View Article