Hi,
I’m trying to get a diff of the data of two databases but I can’t get it to work. I always get the structural differences. Here is the command I’m using:
- call liquibase.bat ^
--driver=oracle.jdbc.OracleDriver ^
--classpath=ojdbc5.jar ^
--url=jdbc:oracle:thin:@myserver:1521:orcl ^
--username=first_user ^
--password=my_password ^
diffChangeLog ^
--diffTypes=data ^
--baseUrl=jdbc:oracle:thin:@myserver:1521:orcl ^
--baseUsername=second_user ^
--basePassword=second_password
What am I missing here?