Articles

Blogs

Data Technology Learning Resources

By

Hey all! Quick one here. Tracy Boggiano, awesome person that she is, has put...

How to use a Script Activity in ADF as a Lookup

By

In Azure Data Factory (ADF, but also Synapse Pipelines and Fabric Pipelines), you have...

Create a copy of an Azure SQL DB

By

Where I work, we will be migrating data from one set of databases into...

Read the latest Blogs

Forums

What Metrics Do You Collect?

By Steve Jones - SSC Editor

Comments posted to this topic are about the item What Metrics Do You Collect?

Updating Sensitivity Classifications

By Steve Jones - SSC Editor

Comments posted to this topic are about the item Updating Sensitivity Classifications

Visit the forum

Question of the Day

Updating Sensitivity Classifications

I ran this code on a column in my SQL Server 2022 database:

ADD SENSITIVITY CLASSIFICATION TO dbo.Customer.ContactEmail
WITH (
    LABEL = 'Highly Confidential',
    INFORMATION_TYPE = 'Contact',
    RANK = CRITICAL
);
GO
I then realize I've made a mistake and run this:
ADD SENSITIVITY CLASSIFICATION TO dbo.Customer.ContactEmail
WITH (
    LABEL = 'Highly Confidential',
    INFORMATION_TYPE = 'Contact',
    RANK = HIGH
);
GO
What happens?

See possible answers