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

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -