Dynamic Data Masking
- Dynamic Data Masking 9.9.4
- All Products
Masking Function
| Description
|
---|---|
"
| Hides the contents of the table column.
|
xxxx
| Replaces the returned value inside ' '.
|
to_date(’YYYY-MM-DD’)
| Applies a date to the masking function.
|
customer_codecase customer_code when 4 then 'confidential vip customer' when 2 then 'confidential vip customer' else customer_name end
| Applies row level security and masks VIP customers identified by
customer_code = 4 .
|
decode ( substr ( p.bankaccno , 1 , 4 ) , 4500 , 450014265523 , 5314 , 531431925755 , 3210 , 321014760512 , 312331322 ) bankaccno
| Maintains the first four digits of account numbers and replaces the rest of the numbers with masked values.
|