Reputation: 1
I am trying get the PII data from postgreSQL table. But I can't display the raw data. How to Pseudonymize the data while fetching(select) it from postgreSQL database?
Upvotes: 0
Views: 173
Reputation: 5134
You can always create (pseudo)anonymized views for tables, and select from those. As for anonymization techniques, that depends on data, you can use regex replaces and md5 very easily in postgres.
Upvotes: 0