[Liquibase-user] Re commendation

2009-05-18 Thread jfrapper
Greetings, With the way our Oracle DBA's have setup security, after every time that Liquibase executes one or more change sets, they would like us to run a grants package. For example: EXEC xxx_meta.GRANTS_PKG.SCHEMA_GRANTS('xxx_OBJ'); How should I hook this into the Liquibase update process

Re: [Liquibase-user] Re commendation

2009-05-18 Thread MichaelM
Add a changeset at the end of the changelog with the runallways attribute. When you add a new changeset to the changelog, add it just before the last one, so that the grants are always run at the end. jfrapper wrote: > > Greetings, > > With the way our Oracle DBA's have setup security, after e

Re: [Liquibase-user] Re commendation

2009-05-18 Thread Diego Moreira da Rosa
On Mon, May 18, 2009 at 4:54 PM, jfrapper wrote: > How should I hook this into the Liquibase update process.  I really dont > want to put it at the end of each differential file.  Suggestions?! I usually put this kind of thing in my Ant script, after the call to Liquibase update task. Cheers, Di