pgsql 에서 sequences 의 start 방식 을 일괄 수정 합 니 다.
DO $$DECLARE r record;
BEGIN
FOR 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;
BEGIN
FOR 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-release
CentOS Linux release 7.8.2003 (Core)
# su - postgres
Last login: Thu Oct 15 09:59:33 CST 2020 on pts/1
ppostgres@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
$ psql
postgres=# create sequence seq_1;
CREATE SEQUENCE
postgres=# 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 = 9223372036854775807
maxvalue
NO MAXVALUE
The 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 값 을 봐 야 겠 어 요.이상 은 개인 적 인 경험 이 므 로 여러분 에 게 참고 가 되 기 를 바 랍 니 다.여러분 들 도 저 희 를 많이 응원 해 주시 기 바 랍 니 다.만약 잘못 이 있 거나 완전히 고려 하지 않 은 부분 이 있다 면 아낌없이 가르침 을 주시 기 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
pgsql 에서 sequences 의 start 방식 을 일괄 수정 합 니 다.지정 값 으로 변경 표 의 id 에 따라 수정 보충:postgresql 13 데이터베이스 sequence 의 maxvalue 최대 치 는 얼마 입 니까? os: centos 7.8.2003 db: postgresql...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.