I have vpd doing column masking on many tables.
I need to write a report that has:
table
policy name
policy function
sec_relevant_cols
I can get most of it, but I am having trouble finding SEC_RELEVANT_COLS
This gets me eveything but the column being masked
select OBJECT_NAME
,POLICY_NAME
,Package,function
from dba_policies
;
any help is appreciated.
Randy