on 2019 Feb 06 1:06 PM
Hi All,
I have a requirement to Mask a particular columns of a table. I have a table MASK_DATA and i need to mask/encrypt the column "Password" so that no other users can see this column information.
I could not able to achieve this with the below command. any suggestions on how to mask single or multiple columns of a table in HANA ??
ALTER TABLE "TMP_SCHEMA"."MASK_DATA" ADD MASK ("PASSWORD" USING '****');
Thanks
Rufus Samuel
Request clarification before answering.
Data masking for tables is available since HANA 2.0 SPS03 (so on your system with SPS02 it is not available). Since 2.0 SPS01 it is available for calc. views, if that is an option for you to provide read access via a calc. view.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Florian,
Thanks for your quick support 🙂 .
I tried creating the View based on the table "MASK_DATA" as you suggested and tried Masking the same column. but still i its not Masked.
CREATE VIEW MASK_V AS SELECT * FROM "TMP_SCHEMA"."MASK_DATA" WITH MASK ("PASSWORD" USING '****');
Am i missing anything here.
Thanks
Rufus Samuel
User | Count |
---|---|
87 | |
10 | |
9 | |
9 | |
7 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.