sql >> Databasteknik >  >> RDS >> PostgreSQL

Hur återställer man postgres primära nyckelsekvens när den faller ur synk?

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

Källa - Ruby Forum



  1. MariaDB ROUND() vs TRUNCATE()

  2. Hur man får identitetskolumnvärden utan att nämna identitetskolumnnamn i Select - SQL Server / T-SQL självstudie del 46

  3. TSQL md5-hash som skiljer sig från C# .NET md5

  4. Hur Cot() fungerar i PostgreSQL