LoslegenKostenlos loslegen

Applying an object tag

Claro's compliance officer has asked the data team to tag the email column in CORE.USERS so it surfaces in governance reports and can feed into downstream masking policy decisions. A sensitivity tag with allowed values 'PII', 'INTERNAL', and 'PUBLIC' has already been created in the CORE schema. Your task is to apply it to the email column with a value of 'PII'.

Diese Übung ist Teil des Kurses

Snowflake Management, Governance & Collaboration

Kurs anzeigen

Anleitung zur Übung

  • Use ALTER TABLE ... MODIFY COLUMN ... SET TAG to apply the sensitivity tag to the email column in CORE.USERS with a value of 'PII'.

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

ALTER TABLE CORE.USERS
    MODIFY COLUMN ___ SET TAG ___.___ = '___';
Code bearbeiten und ausführen