mysql 数据脱敏
你好 我想获取一个生产数据库并在私有开发环境中使用它。但是,我想对数据进行匿名处理。
我已经搜索了一个小时,但我找到的所有内容都是针对 Oracle 或 SQL Server 的……没有针对 mysql 的。
我有大约 15 个表,其中有 75 个字段,需要匿名。
有人找到推荐的解决方案吗?
Hi
I'd like to a take a production database and use it in a private, development environment. But, I'd like to anonymize the data.
I've been searching for an hour, but everything I find is for Oracle or SQL Server... nothing for mysql.
I have approximately 15 tables with 75 fields that should be anonymized.
Has anybody found a recommended solution(s)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
简单地使用 ie 对 MySQL 表中的所有条目进行匿名化
您可以通过使用带字符串表达式的 SQL 更新, 。 ID 为 1 的用户收到电子邮件 [email protected],该用户ID 10 获取 [电子邮件受保护] 等。
You can anonymize all entries in a MySQL table simply with
i.e. by using an SQL Update with string expressions. The user with ID 1 gets the email [email protected], the user with ID 10 gets [email protected], etc.
我从Gartner了解到,Camouflage数据脱敏支持mysql,并且有免费下载版本。
查看 - http://www.datamasking.com/products/featured-product-downloads
I understand from Gartner that Camouflage data masking supports mysql and has a free downloadable version.
Check out - http://www.datamasking.com/products/featured-product-downloads