Getting test data to your dev environments
Letting your developers have a direct copy of your production data is not possible. There is compliance and risks to adhere to.
So sometimes we spend lots of money buying software that masks data when copying an entire database between your environments.
The thing is, developers rarely need the entire database. Binubuo can copy database table structures between databases very easily.
Simply use the python client and transfer the table. No actual data will be moved. Instead it will create a synthetic generator
and fill the table in development with pure random data, that looks like your production data.
We have the table ACTOR and we want it copied to
table ACTOR_DEV in the dev database. With the python client and just 2 commands will
give us a exact copy in the secondary database with synthetic data.