How to mask particular column of a table for particular user in Oracle -
oracle data masking. how mask data xxx of particular column of table.
rls policy doesn't work me.
for security reasons value replaced xxx, actual value should remain same, , should automated user
revoke select on your_table particular_user; create view view_on_table select col1, col2, 'xxx' particular_column, col3 table; grant select on view_on_table particular_user; :)
Comments
Post a Comment