gpt4 book ai didi

postgresql - 将分区 LIST 附加到 postgres 11 中的现有表

转载 作者:行者123 更新时间:2023-12-04 12:10:54 26 4
gpt4 key购买 nike

我正在尝试更改表以在 postgres 11 中使用分区 LIST。我已经尝试了几个小时,但我不断收到错误消息。

我有一个巨大的表,客户,(client_id,customer_id,value)。

我已经通过将旧表重命名为 clients_old 创建了一个新的空表 clients,然后使用以下命令创建了新表:CREATE TABLE clients( like clients_old including all) .

从这里开始,我在尝试添加 LIST 分区时卡住了。

我试图:

ALTER TABLE Clients attach PARTITION BY LIST  (client_id) --> fail;
ALTER TABLE Clients attach PARTITION LIST (client_id) --> fail;
ALTER TABLE Clients ADD PARTITION LIST (client_id) --> fail;

我应该使用什么语法来更改表以使用分区?

最佳答案

Quote from the manual

It is not possible to turn a regular table into a partitioned table or vice versa


因此,您不能将现有的非分区表更改为分区表。
您需要创建一个分区的新表(具有不同的名称),创建所有必要的分区,然后将数据从旧表复制到新的分区表。
就像是:
create table clients_partitioned
(
.... all columns ...
)
PARTITION BY LIST (client_id);
然后创建分区:
create table clients_1 
partition of clients_partioned
values in (1,2,3);

create table clients_1
partition of clients_partioned
values in (4,5,6);
然后复制数据:
insert into clients_partitioned
select *
from clients;
完成后,您可以删除旧表并重命名新表:
drop table clients;
alter table clients_partitioned rename to clients;
不要忘记重新创建外键和索引。

关于postgresql - 将分区 LIST 附加到 postgres 11 中的现有表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57039108/

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