Which of the following best describes the purpose of data classification tags in Snowflake?
Think about why you would want to add labels to data in a cloud environment.
Data classification tags in Snowflake are used to add metadata labels to data objects. These labels help with access control, auditing, and compliance management by identifying sensitive or regulated data.
Given the tag PII already created, which SQL command correctly applies this tag to the email column of the users table?
Remember the exact syntax for setting a tag on a column in Snowflake.
The correct syntax to apply a tag to a column is ALTER TABLE <table> ALTER COLUMN <column> SET TAG <tag_name> = '<value>';. Option D matches this syntax exactly.
You need to design a tagging strategy in Snowflake to identify and protect sensitive data across multiple schemas and databases. Which approach is best to ensure consistent classification and ease of management?
Think about how to maintain consistency and simplify management across many data objects.
Creating a centralized set of tags at the account level ensures consistent classification across all data objects and simplifies management and auditing. This approach avoids fragmentation and confusion.
How can data classification tags in Snowflake be used to enhance security and access control?
Consider how tags can work with other Snowflake features to protect data.
Tags can be used in combination with masking policies to dynamically control data visibility based on classification and user roles, enhancing security without blocking all access.
Consider a tag Confidential applied to a database in Snowflake. Which statement best describes how this tag behaves with respect to objects within that database?
Think about how tagging works at different object levels in Snowflake.
In Snowflake, tags are applied explicitly to individual objects. Applying a tag to a database does not automatically propagate it to schemas or tables inside it. Each object must be tagged separately.