I am trying to export data from an Oracle (ojdbc7) database using liquibase.
My property file has below options:
- driver: oracle.jdbc.driver.OracleDriver
- url: jdbc:oracle:thin:@localhost:1521:XE
- username: user
- password: user
- outputChangeLogFile:src/main/resources/output.xml
- defaultSchemaName: USERS
In STS I used below command to generate the changelog liquibase:generateChangeLog -DdiffTypes="data"
and through command prompt I used: mvn liquibase:generateChangeLog -DdiffTypes="data"
But nothing works, I got only crateTable commands not the insert queries.
Please guide.