mysql 数据脱敏

发布于 2024-10-18 01:55:08 字数 177 浏览 4 评论 0原文

你好 我想获取一个生产数据库并在私有开发环境中使用它。但是,我想对数据进行匿名处理。

我已经搜索了一个小时,但我找到的所有内容都是针对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

战皆罪 2024-10-25 01:55:08

简单地使用 ie 对 MySQL 表中的所有条目进行匿名化

UPDATE users SET email = concat('user_', id, '@example.com');

您可以通过使用带字符串表达式的 SQL 更新, 。 ID 为 1 的用户收到电子邮件 [email protected],该用户ID 10 获取 [电子邮件受保护] 等。

You can anonymize all entries in a MySQL table simply with

UPDATE users SET email = concat('user_', id, '@example.com');

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.

快乐很简单 2024-10-25 01:55:08

我从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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文