Files
sql-scripts/OCTPDBA-380 - POC data anonymization with Data Masker by RedGate tool/analyze.txt
Thierry Schork b0df9def43 update
2023-01-09 09:53:33 +01:00

32 lines
2.9 KiB
Plaintext

ressources:
https://www.red-gate.com/hub/university/courses/product-training?tool=data-masker&level=get-started
getting started videos from red-gate directly
https://www.red-gate.com/hub/university/courses/sql-data-catalog/end-to-end-data-protection-with-sql-data-catalog-and-sql-provision
end-to-end video showing the process of Cataloging, Masking and Cloning
https://learn.microsoft.com/en-us/sql/relational-databases/security/dynamic-data-masking?view=sql-server-ver16
sql server >= 2016 implémente aussi du data masking
sites intéressants:
https://plantbasedsql.com/tag/data-masking/
un ex de red-gate, qui a travaillé sur data-masker et parle du process
bcp d'exemples font usage de red-gate sql data catalog
https://www.red-gate.com/products/dba/sql-data-catalog/
SQL Data Catalog allows users to catalog their SQL Server data estate by applying classifications, as tags and free-text labels, to SQL Server objects. The taxonomy of tags and attributes to be applied is also created and managed by this product. A common use case for the tool is for classifying columns by their sensitivity under data privacy regulations such as the GDPR.
et peut-être plus intéressant est le package de "SQL provision":
SQL Provision is a solution for (compliant) test data management that combines two Redgate products into a single offering: Data Masker for static data masking, and SQL Clone for database cloning and provisioning.
terminologie:
Static data masking is the process of de-identifying sensitive data-at-rest within the tables of your Database. It is typically used to provide realistic, Production-like data into non-Production environments like Dev and Test, and even sets that are given to 3rd parties. This relies on retaining non-sensitive business specific fields within rows and taking anything considered PII (Personally Identifiable Information) or PHI (Protected Health Information) and either scrambling or replacing it with similar but ultimately false data.
Deterministic data masking is the process of masking data with values in a repeatable way, such that it will give the same value when masked in any and all future runs on any value that matches and will create a new record for values which have not been previously masked. An example of this would be if you were to mask “Chris Unwin” to “Brad Pitt”, it should appear as “Brad Pitt” not only in our (for example) dbo.Contacts table but also all associated tables (regardless of PKFK relationships at the DB level) and every single run should provide the same output. This is useful for building up familiarity with the data and utilizing for future test runs.
dans notre cas, c'est du deterministic qu'il faudra utiliser.
Pour ce faire, il faut:
1. Identifier les champs et les tables qui sont à masquer
2. définir les règles de masquage