Dynamic Data Masking
- Dynamic Data Masking 9.8.4
- All Products
Symbol
| Description
|
---|---|
\(table)
| Replaces the full object reference in the original SQL statement with the Table Name parameter value.
|
\(prefix)
| Replaces the prefix of the object reference, including the separator, with the Table Name parameter value.
|
\(tableOnly)
| Replaces the table name with the Table Name parameter value, but preserves the path.
|
The following table describes which parts of the SQL statement the symbols replace:SELECT * FROM [HR].[DBO].employee
Symbol
| Replaced Value
|
---|---|
\(table)
| [HR].[DBO].employee
|
\(prefix)
| [HR].[DBO].
|
\(tableOnly)
| employee
|