Skip to content

Latest commit

 

History

History
86 lines (65 loc) · 2.92 KB

File metadata and controls

86 lines (65 loc) · 2.92 KB
title DROP SENSITIVITY CLASSIFICATION (Transact-SQL)
description DROP SENSITIVITY CLASSIFICATION (Transact-SQL)
author Madhumitatripathy
ms.author matripathy
ms.date 08/06/2024
ms.service sql
ms.subservice t-sql
ms.topic reference
f1_keywords
DROP SENSITIVITY CLASSIFICATION
DROP_SENSITIVITY_CLASSIFICATION
helpviewer_keywords
DROP SENSITIVITY CLASSIFICATION statement
dropping labels
drop labels
removing labels
remove labels
classification [SQL]
labels [SQL]
information types
data classification
dev_langs
TSQL
monikerRange >=sql-server-linux-ver15 ||>=sql-server-ver15||=azuresqldb-current||=azure-sqldw-latest||=azuresqldb-mi-current

DROP SENSITIVITY CLASSIFICATION (Transact-SQL)

[!INCLUDE sql-asdb-asdbmi-asa]

Drops sensitivity classification metadata from one or more database columns.

Syntax

DROP SENSITIVITY CLASSIFICATION FROM
    <object_name> [, ...n ]

<object_name> ::=
{
    [schema_name.]table_name.column_name
}

Arguments

object_name ([schema_name.]table_name.column_name)

The name of the database column from which to remove the classification. Currently only column classification is supported. - schema_name (optional) - Is the name of the schema to which the classified column belongs to. - table_name - Is the name of the table to which the classified column belongs to. - column_name - Is the name of the column from which to drop the classification.

Remarks

  • Multiple object classifications can be dropped using a single 'DROP SENSITIVITY CLASSIFICATION' statement.

Permissions

Requires ALTER ANY SENSITIVITY CLASSIFICATION permission. The ALTER ANY SENSITIVITY CLASSIFICATION is implied by the database permission CONTROL, or by the server permission CONTROL SERVER.

Examples

A. Drop classification from a single column

The following example removes the classification from the column dbo.sales.price.

DROP SENSITIVITY CLASSIFICATION FROM
    dbo.sales.price

B. Drop classification from multiple columns

The following example removes the classification from the columns dbo.sales.price, dbo.sales.discount, and SalesLT.Customer.Phone.

DROP SENSITIVITY CLASSIFICATION FROM
    dbo.sales.price, dbo.sales.discount, SalesLT.Customer.Phone  

Related content