Hello @NoobMaster69
Based on the official docs, Just to clarify, there are two different things going on here
https://docs.databricks.com/aws/en/database-objects/tags
You can't delete the tag definition itself
> "Users cannot modify or delete system tag keys or values."
System tags are built-in defaults by Databricks, so even admins can't edit or delete the tag keys/values.
You can still remove (unset) it from your object
> "To add a governed tag to Unity Catalog securable objects, you must also have the ASSIGN permission on the governed tag."
> "Users can control who is allowed to assign or unassign system tags through governed tag permission settings."
because system tags are treated as Governed Tags, owning the table or having APPLY TAG isn't enough. You specifically need the ASSIGN permission on that tag to remove it.
To fix this
you'll need an Account Admin (workspace admin won't be enough) to grant you the ASSIGN permission on the tag.
https://docs.databricks.com/aws/en/admin/governed-tags/manage-permissions
If you want to check your admin role types, see: https://docs.databricks.com/aws/en/admin/admin-concepts
Hope this helps!