pgsql批量修改sequences的start方式

时间:2021-05-24

修改为指定值

DO $$DECLARE r record;BEGINFOR r IN SELECT sequence_name FROM information_schema."sequences"LOOP EXECUTE 'ALTER SEQUENCE '|| r.sequence_name ||' restart WITH 10000';END LOOP;END$$;

根据表的id修改

DO $$DECLARE r record; start_value integer := 0;BEGINFOR r IN SELECT tablename||'_id_seq' AS sequence_name, tablename FROM pg_tables WHERE schemaname = 'public'LOOP EXECUTE 'SELECT max(id)+1 AS max_value FROM ' || r.tablename INTO start_value; IF start_value IS NULL THEN start_value:= 1; END IF; RAISE NOTICE 'start_value % %', r.tablename,start_value; EXECUTE 'ALTER SEQUENCE '|| r.sequence_name ||' restart WITH ' || start_value;END LOOP;END$$;

补充:postgresql 13 数据库 sequence 的 maxvalue 最大值是多少?

os: centos 7.8.2003

db: postgresql 13.0

版本

# cat /etc/centos-releaseCentOS Linux release 7.8.2003 (Core)# su - postgresLast login: Thu Oct 15 09:59:33 CST 2020 on pts/1ppostgres@nodepg13-> psql -c "select version();" version --------------------------------------------------------------------------------------------------------- PostgreSQL 13.0 on x86_64-pc-linux-gnu, compiled by gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-39), 64-bit(1 row)

create sequence

$ psqlpostgres=# create sequence seq_1;CREATE SEQUENCEpostgres=# select c.relname,c.relkind,s.* from pg_class c,pg_sequence s where c.oid=s.seqrelid; relname | relkind | seqrelid | seqtypid | seqstart | seqincrement | seqmax | seqmin | seqcache | seqcycle ---------+---------+----------+----------+----------+--------------+---------------------+--------+----------+---------- seq_1 | S | 40968 | 20 | 1 | 1 | 9223372036854775807 | 1 | 1 | f(1 row)seqmax = 9223372036854775807maxvalueNO MAXVALUEThe optional clause MAXVALUE maxvalue determines the maximum value for the sequence. If this clause is not supplied or NO MAXVALUE is specified, then default values will be used. The default for an ascending sequence is the maximum value of the data type. The default for a descending sequence is -1.

那就需要查看下 bigint 的值

以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章