2022-12-06 17:41:46 -06:00
|
|
|
SELECT
|
|
|
|
schema_name
|
|
|
|
FROM
|
|
|
|
information_schema.schemata
|
2022-12-19 13:26:13 -06:00
|
|
|
WHERE
|
|
|
|
schema_name NOT IN ('information_schema', 'pg_catalog')
|
|
|
|
AND schema_name !~ '^pg_(toast|temp)'
|
2022-12-06 17:41:46 -06:00
|
|
|
ORDER BY
|
|
|
|
schema_name ASC
|