June 2016
Intermediate to advanced
388 pages
5h 49m
English
In this recipe, you will implement partial redaction on columns of two different types: Number and Varchar2. Partial redaction means that only part (hence the name partial) of the data in a specified column will be masked (redacted), whereas the other part of the data will be visible to the user - for instance, the first 12 digits of credit card number will be redacted, whereas other 4 digits will be visible.
zoran):
$ sqlplus zoran/oracle
SQL> create table tbl (a number); SQL> insert into tbl values (123456); SQL> insert into tbl values (234567); SQL> insert into tbl ...
Read now
Unlock full access