Readthedocs
postgresql-anonymizer.readthedocs.io
PostgreSQL Anonymizer
PostgreSQL Anonymizer is an extension to mask or replace personally identifiable information (PII) or commercially sensitive data from a Postgres database.
PostgreSQL
postgresql.org › about › news › postgresql-anonymizer-20-better-faster-safer-2993
PostgreSQL: PostgreSQL Anonymizer 2.0: Better, Faster, Safer
January 7, 2025 - Eymoutiers, France, January 6th, 2025 We're thrilled to announce PostgreSQL Anonymizer 2.0, a major leap forward in database privacy protection. …
Videos
47:21
PostgreSQL Anonymizer 3.0, par Damien Clochard (Dalibo) - YouTube
Guide technique de l'anonymisation des données avec ...
Postgre Anonymizer
01:11:40
Elephant in the Room, Episode 4: Protecting Customer Data with ...
08:02
How to Anonymization and Data Masking for PostgreSQL in Ubuntu ...
Yandex Cloud
yandex.cloud › en › docs › managed-postgresql › operations › extensions › pg_anon
Using postgresql_anonymizer in Managed Service for ...
We cannot provide a description for this page right now
Dalibo
labs.dalibo.com › postgresql_anonymizer
PostgreSQL Anonymizer - Dalibo Labs
With PostgreSQL Anonymizer we integrate, from the design of the database, the principle that outside production the data must be anonymized.
GitHub
github.com › neondatabase › postgresql_anonymizer › blob › master › NEWS.md
postgresql_anonymizer/NEWS.md at master · neondatabase/postgresql_anonymizer
May 28, 2025 - PostgreSQL Anonymizer is an extension that hides or replaces personally identifiable information (PII) or commercially sensitive data from a PostgreSQL database. The extension supports 3 different anonymization strategies: Dynamic Masking, Static ...
Author neondatabase
PostgreSQL
postgresql.org › about › news › postgresql-anonymizer-30-parallel-static-masking-json-import-export-3236
PostgreSQL: PostgreSQL Anonymizer 3.0 : Parallel Static Masking + JSON import / export
February 19, 2026 - PostgreSQL Anonymizer is an extension that hides or replaces personally identifiable information (PII) or commercially sensitive data from a PostgreSQL database.
YugabyteDB
docs.yugabyte.com › stable › additional-features › pg-extensions › extension-pganon
PostgreSQL Anonymizer extension | YugabyteDB Docs
March 2, 2026 - The PostgreSQL Anonymizer extension can be used for masking or replacing personally identifiable information (PII) or commercially sensitive data in a YSQL database.
Documentation Center
doc.scalingo.com › databases › postgresql › extensions › postgresql-anonymizer
PostgreSQL® Anonymizer - Scalingo
March 11, 2026 - PostgreSQL® Anonymizer is an open-source extension for PostgreSQL® that facilitates the masking or replacement of personally identifiable information (PII) and commercially sensitive data directly within a database. This extension is particularly useful for organizations handling sensitive ...
Scub
scub-france.github.io › anonymisation-base-de-donnees-avec-postgresql-anonymizer
Anonymisation - Etude de PostgreSQL Anonymizer | Anonymisation base de données avec Postgresql anonymizer.
PostgreSQL Anonymizer est une extension de PostgreSQL permettant d’anonymiser une base de données.
IBM
cloud.ibm.com › docs › databases-for-postgresql
Data masking using PostgreSQL Anonymizer
Find documentation, API & SDK references, tutorials, FAQs, and more resources for IBM Cloud products and services.
Taadeem
blog.taadeem.net › english › 2024 › 10 › 15 › postgresql_anonymizer_2_generating_fake_data
PostgreSQL Anonymizer 2.0 - Generating Fake Data
October 15, 2024 - PostgreSQL Anonymizer 2.0 offers a wide range of functions to generate fake but realistic data.
pg_tileserv
access.crunchydata.com › documentation › postgresql-anonymizer › latest › anonymous_dumps
PostgreSQL Anonymizer
In previous versions of the documentation, this method was also called « anonymizing black box ». You can also apply masking rules directly on a database backup file ! The PostgreSQL Anonymizer docker image contains a specific entrypoint script called /dump.sh.
Hacker News
news.ycombinator.com › item
PostgreSQL Anonymizer | Hacker News
January 21, 2025 - According to its --help output, it is designed to retain the following properties of data: · The summary is pretty funny:
Top answer 1 of 2
1
I've made some progress on the subject, I used the masking tag you gave me. But if I want to see the data masked with the useranonymise user I have to do:
SELECT * FROM mask.personnelmedical;
I get the impression that it doesn't redirect to my masked table when I do:
SELECT * FROM schema.personnelmedical;
2 of 2
0
you need to run under admin
SELECT anon.stop_dynamic_masking();
SECURITY LABEL FOR anon ON COLUMN users.email IS 'MASKED WITH FUNCTION anon.fake_email()';
SECURITY LABEL FOR anon ON ROLE masked_read IS 'MASKED';
SELECT anon.start_dynamic_masking();
after it you can run by user with role masked_read
select * from mask.users order by id limit 10;
and get masked data