我在Redshift中创建了外部架构和外部表。我可以使用\ dn在postgresql中查看外部模式名称。
要进行什么查询才能在java中运行它?以及获取外部表列表的查询?
我试过
select * from information_schema.tables where
table_schema not in ('pg_catalog', 'information_schema')
and table_schema not like 'pg_toast%'
但它没有获得外部表格列表。
答案 0 :(得分:9)
Redshift Spectrum外部数据库,模式和表具有自己的目录视图。
您可以从任何连接中查询这些内容:SELECT * FROM svv_external_schemas;