Can you check that packages are compiled after all changes have been applied.
Using Liquibase to manage our Oracle Schema. Is there a way to check at the end of the upgrade that all objects are compiled.Thanks
View ArticleRe : Can you check that packages are compiled after all changes have been...
I use this changelog for this: <!-- Check invalid objects in the Data Base --> <changeSet id="DataBaseCheck" author="e-ballo" runAlways="true" runOnChange="true"...
View ArticleRe : Liquibase preconditions not working
I did the same that you want to do with a view, and for me it works:Maybe gives you some idea: <changeSet author="e-ballo" id="DropViewsAndcreateSynonyms" context="dev,int,uat,prod">...
View ArticleRe : Maven + Hibernate
I just sent the pull request.Let me know if you still see some things I can improve before you release a new version.Note that I added some hibernate database specific comparison classes but I still...
View ArticleRe : Cross DBMS usage of createIndex
It is normally best to create lots of changeSets with just a single change in each. The reason is because while liquibase tries to run the changeSet in a transaction, most databases will auto-commit...
View ArticleRe : How to handle migrations with multiple RDBMS?
Thanks for the update, glad to hear you figured something out.Let me know if you get to look into it more.Nathan
View ArticleRe : Cross DBMS usage of createIndex
Well that was already clear to me, but what I can't understand is why such a big changeset should fail in the first place? I mean we are all testing that stuff and of course it can fail sometimes, but...
View ArticleCreation of DATABASECHANGELOG support tables via script?
I'm using latest liquibase maven plugin.When I run mvn liquibase:updateSQL on a fresh database the DATABASECHANGELOG support tables are created automatically.I would rather want this tables to be added...
View ArticleMaven and future rollback?
Does maven include functionality to create future rollback scripts.I want to generate both migration.sql and rollback scripts from Maven.I need this to provide scripts to our DBA to support SOX...
View ArticleIs the stylesheet used by dbDoc configurable?
Is the stylesheet used by dbDoc configurable?E.g. by storing a css file in src/main/site/dbdoc/stylesheet. And then refer to this from the Maven plugin's configuration.
View ArticleRe : Creation of DATABASECHANGELOG support tables via script?
When I try this using the liquibase command line then I see btw different behaviour.when executing liquibase updateSQL then the supporting tables are not automatically created, but are (as I would...
View ArticleRe : Maven and future rollback?
I noticed the command line has the 'futureRollbackSQL' is this not available in the Maven plugin?
View ArticledbDoc does not include changelogs for sql scripts
I'm experimenting with the dbDoc generation and for all types (xml, json, yaml) EXCEPT sql the Past Changes and Pending Changes are generated.Is this expected or a bug?
View ArticleRe : Issue with PL/SQL and rollbacks
Although on second thought, you can include change tags in your rollback block, so you should be able to do:<rollback> <sql splitStatements="false">YOUR...
View ArticleRe : generateChangeLog and difftypes
It is working fine when I test it. How are you running liquibase? Command prompt or a different way?Nathan
View ArticleRe : Can't connect to Oracle DB with a special character in pwd
I created https://liquibase.jira.com/browse/CORE-1609 to track the issueNathan
View ArticleRe : Generating SQL file per changeset
By "generate" do you mean with generateChangeLog or diffChangeLog? If so, there is not a way to do that. You can create the files yourself during normal development and use <includeAll> to...
View ArticleRe : Redshift support
I created https://github.com/liquibase/liquibase-redshift/releases/tag/snapshot-1 as a Liquibase extension to support redshift. It should correct the datetime problem and uses the redshift keywords. To...
View ArticleRe : custom dbms in modifySql
This will work with the redshift extension installed, assuming you have snapshot #2. https://github.com/liquibase/liquibase-redshift/releases/tag/snapshot-2Nathan
View ArticleRe : Redshift support
I fixed an issue so you will want at least snapshot #2 https://github.com/liquibase/liquibase-redshift/releasesNathan
View Article