OutputFile without schema

Hi there, 


I am using ant liquibase to generate the sql script files we need to manually run in prod and uat. Our database is oracle 11g. 


The problem I have is that the schema name is hardcoded in each line of the generated script


eg:


CREATE SEQUENCE UAT.hibernate_sequence;


Is it possible to tell liquibase’s ant task to remove the schema from the script (like )?


CREATE SEQUENCE hibernate_sequence;


Thanks

Fernando




By default it shouldn’t. There are includeSchema and includeCatalog ant task parameters in generateChangeLog that if set to true should add the schema/catalog but if set to false they should not be included.


Are they set to false? Otherwise, what version of Liquibase are you running?

Nathan