 |
Oracle Label Security |
Protect PII by controlling Secure Application Roles with OLS User Authorizations
Only the user 'SKing' will get a label which is equal to or dominates the 'S:PII' label, which will allow him to see all columns of the table which contains PII information; all other users ('LDoran' for example) have labels that do not dominate the 'S:PII' label; for them, the 'salary' column will be empty:

The same could be achieved using the following scripts:
BEGIN
SA_USER_ADMIN.SET_USER_LABELS (
policy_name => 'PROTECT_PII',
user_name => 'SKING',
max_read_label => 'S:PII',
max_write_label => 'S:PII',
min_write_label => 'C',
def_label => 'S:PII',
row_label => 'S:PII');
END;
/
BEGIN
SA_USER_ADMIN.SET_USER_LABELS (
policy_name => 'PROTECT_PII',
user_name => 'LDORAN',
max_read_label => 'C',
max_write_label => 'C',
min_write_label => 'C',
def_label => 'C',
row_label => 'C');
END;
/
|