Export refactoring?

Hi, I noticed http://www.liquibase.org/documentation/changes/load_data.html


Is the other side of the equation planned/possible with liquibase? That is, export a table (or query to be general) to csv?


Thanks.

The generateChangeLog command supports --diffTypes=data which exports the contents of tables to CSV files. 


Nathan

1 Like

How do you go about excluding some table from the export…

thanks

liquibase.properties file
excludeObjects: table:databasechangelog, table:databasechangeloglock, table:raw_wise

cli:
–exclude-objects=“my_table”