Dynamic Data Masking
- Dynamic Data Masking 9.9
- All Products
Scrambling Function
| Description
|
---|---|
translate(reverse(\(col)), '1234567890', '97865301') | Scrambles the locations of the digits.
|
max(\(col)) over(order by empno rows between 1 and preceding and 1 following)
| Provides list scrambling. The Rule Engine replaces the name with the letter value of the preceding and subsequent records.
|
nvl( lead(ename) over (order by ename), first_value(ename) over ( order by ename) | Offsets the address by a single row. If the value is null, the Rule Engine assigns the
first_value of
ename found in the
emp table after sorting by
ename .
|