2

我使用 TablePlus(SQL 客户端)将 Postgres SQL 文件导入到我的服务器,但是在插入新行后,我得到了如下错误:

SQLSTATE [23505]:唯一违规:7 错误:重复键值违反唯一约束 \"users_pkey\" 详细信息:键 (id)=(1) 已存在

我知道它是由序列值引起的,需要通过下面的代码来更新:

SELECT setval(_sequence_name_, max(id)) FROM _table_name_;

但是如果我必须一个一个地写入所有表序列(可能是数百个序列),它需要很多时间。那么如何一次更新所有序列呢?

4

3 回答 3

6

假设所有使用的序列都由各自的列拥有,例如通过serialoridentity属性,您可以使用它来重置当前数据库中的所有(拥有的)序列。

with sequences as (
  select *
  from (
    select table_schema,
           table_name,
           column_name,
           pg_get_serial_sequence(format('%I.%I', table_schema, table_name), column_name) as col_sequence
    from information_schema.columns
    where table_schema not in ('pg_catalog', 'information_schema')
  ) t
  where col_sequence is not null
), maxvals as (
  select table_schema, table_name, column_name, col_sequence,
          (xpath('/row/max/text()',
             query_to_xml(format('select max(%I) from %I.%I', column_name, table_schema, table_name), true, true, ''))
          )[1]::text::bigint as max_val
  from sequences
) 
select table_schema, 
       table_name, 
       column_name, 
       col_sequence,
       coalesce(max_val, 0) as max_val,
       setval(col_sequence, coalesce(max_val, 1)) --<< this will change the sequence
from maxvals;

第一部分选择列拥有的所有序列。然后,第二部分query_to_xml()用于获取与该序列关联的列的最大值。然后最后的 SELECT 使用 . 将最大值应用于每个序列setval()

您可能希望在没有setval()调用的情况下运行它,以查看是否一切都符合您的需要。

于 2020-05-28T08:44:12.730 回答
1

由于@a_horse_with_no_name 答案在我的情况下不起作用(可能SQL文件有问题),我修改了下面的查询,在我的情况下有效。

with sequences as (
  select *
  from (
    select table_schema,
           table_name,
           column_name,
           replace(replace(replace(column_default, '::regclass)', ''), '''', ''), 'nextval(', 'public.') as col_sequence
    from information_schema.columns
    where table_schema not in ('pg_catalog', 'information_schema') and column_default ILIKE 'nextval(%'
  ) t
  where col_sequence is not null
), maxvals as (
  select table_schema, table_name, column_name, col_sequence,
          (xpath('/row/max/text()',
             query_to_xml(format('select max(%I) from %I.%I', column_name, table_schema, table_name), true, true, ''))
          )[1]::text::bigint as max_val
  from sequences
) 
select table_schema, 
       table_name, 
       column_name, 
       col_sequence,
       coalesce(max_val, 0) as max_val,
       setval(col_sequence, coalesce(max_val, 1)) --<< this will change the sequence
from maxvals;

我只是更改 pg_get_serial_sequence(format('%I.%I', table_schema, table_name), column_name) as col_sequencereplace(replace(replace(column_default, '::regclass)', ''), '''', ''), 'nextval(', 'public.') as col_sequence.

也许我的查询不太好,我应该使用正则表达式而不是多个替换。但就我而言,它是 100% 有效的。

于 2020-05-29T00:22:45.180 回答
0

您不能同时更新所有序列,因为每个序列可能包含与每个表有关的不同值。您必须从每个表中获取最大值并更新它。

SELECT setval(_sequence_name_, max(id)) FROM _table_name_;
于 2020-05-28T08:37:29.533 回答