wooden-spring-14915
09/21/2022, 6:54 PMelegant-house-93198
SELECT DISTINCT
t.table_catalog AS cluster,
t.table_schema AS schema
FROM svv_tables t
WHERE schema != 'pg_catalog'
AND schema != 'information_schema'
AND schema != 'pg_internal'
AND schema NOT LIKE 'pg_temp_%%'
ORDER BY cluster, schema;
adamant-forest-45768
09/21/2022, 11:56 PMelegant-house-93198
adamant-forest-45768
09/22/2022, 4:44 PM