Skip to content

Instantly share code, notes, and snippets.

@tobyhede
Created January 2, 2013 06:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tobyhede/4432635 to your computer and use it in GitHub Desktop.
Save tobyhede/4432635 to your computer and use it in GitHub Desktop.
Reset PG sequence to max value
SELECT setval('table_id_seq', (SELECT MAX(id) FROM table));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment