如何批量更新所有表的序列 ID postgreSQL

How to bulk update sequence ID postgreSQL for all tables

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

SQLSTATE[23505]: Unique violation: 7 ERROR: duplicate key value violates unique constraint \"users_pkey\" DETAIL: Key (id)=(1) already exists

我知道这是由序列值为 0 引起的,需要通过以下代码更新:

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

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

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

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

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

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() 的情况下先调用以查看是否一切都符合您的需要。

因为@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_sequence 更改为 replace(replace(replace(column_default, '::regclass)', ''), '''', ''), 'nextval(', 'public.') as col_sequence

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