Questions tagged [dynamic-data-masking]
17 questions
0
votes
1 answer
Azure SQL Database does not display as the Dynamic Mask pattern after using trim()
I am using Azure SQL database and some of the table columns are using Dynamic mask like this:
CREATE TABLE PartialMask
(
ID INT IDENTITY (1,1) PRIMARY KEY NOT NULL,
Name VARCHAR(255) MASKED WITH (FUNCTION = 'partial(2, "XXXXXX",2)') NULL,
…

Vinci
- 11
- 2
0
votes
0 answers
Get masked data for a user that has UNMASK permissions
If I have a SQL Server user that has UNMASK permissions on a table, is it possible for that user to still get results with masked data?
My use case is that I have a service that returns employee data. Since SQL Server does not support OAuth2 /…

Vaccano
- 78,325
- 149
- 468
- 850