1. ホーム
  2. postgresql

[解決済み] postgres の主キー配列が同期しなくなったときにリセットする方法は?

2022-03-16 13:35:41

質問

主キーの配列がテーブルの行と同期していないという問題に遭遇しました。

つまり、新しい行を挿入すると、シリアル・データタイプに含まれるシーケンスがすでに存在する数値を返すため、重複キー・エラーが発生するのです。

インポート/リストアがシーケンスを適切に維持できていないことが原因のようです。

解決方法は?

-- Login to psql and run the following

-- What is the result?
SELECT MAX(id) FROM your_table;

-- Then run...
-- This should be higher than the last result.
SELECT nextval('your_table_id_seq');

-- If it's not higher... run this set the sequence last to your highest id. 
-- (wise to run a quick pg_dump first...)

BEGIN;
-- protect against concurrent inserts while you update the counter
LOCK TABLE your_table IN EXCLUSIVE MODE;
-- Update the sequence
SELECT setval('your_table_id_seq', COALESCE((SELECT MAX(id)+1 FROM your_table), 1), false);
COMMIT;

ソース - Rubyフォーラム