Hi I would like to take a production database and use it in a private development environment. But I would like to anonymize the data.
I searched for an hour, but all I find is for Oracle or SQL Server ... nothing for mysql.
I have approximately 15 tables with 75 fields that need to be anonymized.
Has anyone found a recommended solution (s)?
You can anonymize all records in a MySQL table simply with
UPDATE users SET email = concat('user_', id, '@example.com');
. SQL Update . 1 user_1@example.com, 10 user_10@example.com ..
Gartner, Camouflage mysql .
- http://www.datamasking.com/products/featured-product-downloads
Cheers, Adrienne
Fluid International Inc. www.fluidinternational.com
Source: https://habr.com/ru/post/1793407/More articles:What is the best way to do a static send bytecode generated proxy in java at present? - javaWhy are my newly created FK relationships not showing up in the object explorer? - sql-serverHow to block ToObservable using list <>? - c #SendMessageCallback example - c ++Can I create a single assembly with Latex source files? - buildonLongClick for plain text inside WebView - androidgettimeofday - explain exact time values โโstructvalval - cCan I send emails from different addresses using the same ActionMailer - ruby-on-railsIn Java, is it possible to dynamically create an anonymous instance of a subclass specified only by an instance of the parent class? - javaRuby - works with the `require` command - ruby โโ| fooobar.comAll Articles