Skip to content

Instantly share code, notes, and snippets.

@okanmenevseoglu
Last active January 29, 2018 11:28
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save okanmenevseoglu/9411f7abad6f5adb0f42f4e23689f03a to your computer and use it in GitHub Desktop.
Save okanmenevseoglu/9411f7abad6f5adb0f42f4e23689f03a to your computer and use it in GitHub Desktop.
Create/Drop a database index online (without locking the table) on PostgreSQL
CREATE INDEX CONCURRENTLY {indexName} ON {tableName} ({columnName});
DROP INDEX CONCURRENTLY {indexName};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment