I have a table in Vertica that I cannot delete because I am not the owner. How do I know who owns a table?
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