What query should i run to get details of owner of delta table in Databricks
I have tried describe table extended command it's showing owner as root
CodePudding user response:
Run:
SHOW GRANTS ON <schema>.<tablename>;
The entry with be actionType = 'OWN'
determines ownership.
Databricks documentation: object privileges.