How do I view the owner of a Vertica table?

I have a table in Vertica that I cannot delete because I am not the owner. How do I know who owns a table?

+3


source to share


1 answer


If you are not the owner of the table or do not have permission to view the table, you most likely cannot find out who is the owner:

SELECT table_schema, table_name, owner_name FROM v_catalog.tables;

      



Documentation

+9


source







All Articles