Home > Back-end >  How to check owner of delta table in Databricks
How to check owner of delta table in Databricks

Time:11-01

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.

  • Related