gpt4 book ai didi

postgresql - 我如何知道 Postgresql 表空间中有什么?

转载 作者:行者123 更新时间:2023-11-29 11:09:39 24 4
gpt4 key购买 nike

我已经创建了一个名为 indexes 的新表空间,并且我正在尝试删除旧表空间 indexes_old,它曾经包含一些表和索引。当我尝试删除表空间时,我得到:

=> drop tablespace indexes_old;
ERROR: tablespace "indexes_old" is not empty

但是当我试图查看其中的内容时,似乎该表空间中没有表:

=> select * from pg_tables where tablespace = 'indexes_old';
schemaname | tablename | tableowner | tablespace | hasindexes | hasrules | hastriggers
------------+-----------+------------+------------+------------+----------+-------------
(0 rows)

=> select * from pg_indexes where tablespace = 'indexes_old';
schemaname | tablename | indexname | tablespace | indexdef
------------+-----------+-----------+------------+----------
(0 rows)

那么那个表空间中有什么阻止我删除它?

以防万一,我刚刚使用 pg_upgrade 工具从 Pg 8.4 迁移到了 Pg 9.0。

表空间如下所示:

    Name     |  Owner   |    Location     | Access privileges | Description 
-------------+----------+-----------------+-------------------+-------------
indexes | nobody | /data/pgindex90 | |
indexes_old | nobody | /data/pgindex84 | |

/data/pgindex84 的内容包括所有旧的 8.4 索引,加上 pg_upgrade 自动创建的这个新的 9.0 索引

# sudo ls -al /data/pgindex84/PG_9.0_201008051/11874
total 8280
drwx------ 2 postgres postgres 4096 Feb 9 14:58 .
drwx------ 3 postgres postgres 4096 Feb 11 09:28 ..
-rw------- 1 postgres postgres 40960 Feb 9 14:58 10462602
-rw------- 1 postgres postgres 40960 Feb 9 14:58 10462604
-rw------- 1 postgres postgres 4644864 Feb 9 14:58 10462614
-rw------- 1 postgres postgres 3727360 Feb 9 14:58 10462616

最佳答案

检查 pg_class 以查看位于何处:

SELECT 
c.relname,
t.spcname
FROM
pg_class c
JOIN pg_tablespace t ON c.reltablespace = t.oid
WHERE
t.spcname = 'indexes_old';

关于postgresql - 我如何知道 Postgresql 表空间中有什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4970966/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com