It looks like you’re trying to manage comments and tags for columns in Databricks Unity Catalog tables and need to know what specific roles or permissions you require.
To add comments and tags for columns, you'll need the following permissions:
- ADMIN PRIVILEGES: Make sure you have
MANAGEpermissions on the table to modify its metadata, which includes adding comments or tags. - APPLY_TAG PERMISSION: Specifically for tagging, you need the
APPLY_TAGpermission on the table in question.
Here’s a suggested approach to get the necessary permissions:
- Contact your IT or Databricks admin: Request the
MANAGEprivilege for the table or schema where the table resides. - Use SQL Commands: If you have enough permissions, you can use the SQL command:
GRANT MANAGE ON TABLE <table_name> TO <user_or_group>;
To proceed effectively, you might want to check if your role aligns with the metastore admin or if there's an existing admin who can grant you these privileges.
Follow-Up Questions:
- Are you currently assigned as a metastore admin or do you know who is in that role?
- Do you already have permissions to manage other tables, or is this a new request?
- Are you encountering any specific error messages when attempting to add comments or tags?
Hope this helps! Let me know if you need further clarification.