A data analyst must programmatically designate a Unity Catalog table, sales_data, as certified so it can be found as a trusted asset throughout their organization.
Which SQL command can be used to satisfy this requirement?
AALTER TABLE sales_data SET TAGS (‘system.Certified’);
BALTER TABLE sales_data SET TAGS (‘certified’ = ‘true’);
CGRANT CERTIFY ON TABLE sales_data TO analyst_group;
Community Discussion