Redshift - tables and their owners

It was pg_tables table and here is the SQL:

SELECT tablename, tableowner FROM pg_tables;

Source: https://stackoverflow.com/a/29861410

Last updated