sql >> Database >  >> RDS >> PostgreSQL

Hoe de primaire sleutelreeks van postgres opnieuw in te stellen wanneer deze niet meer synchroon loopt?

-- 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;

Bron - Ruby Forum



  1. SQL Server-lus - hoe loop ik door een set records?

  2. De instructie ALTER TABLE is in strijd met de FOREIGN KEY-beperking in SQL Server - SQL Server / TSQL-zelfstudie, deel 69

  3. 'Serie' toevoegen aan bestaande kolom in Postgres

  4. GETDATE() Voorbeelden in SQL Server (T-SQL)