要查看 PostgreSQL 数据库的临时表空间,可以使用以下 SQL 查询语句:
SELECT temp_tablespace FROM pg_settings WHERE name = 'temp_tablespaces';
这条查询语句将返回当前 PostgreSQL 数据库实例中配置的临时表空间。您也可以通过连接到 PostgreSQL 数据库并执行以下查询来查看临时表空间的使用情况:
SELECT pg_tablespace_location(pg_tablespace_oid) AS temp_tablespace_location, *
FROM pg_tablespace;
这条查询将返回所有表空间的信息,包括临时表空间的位置。