Skip to content

Instantly share code, notes, and snippets.

View okanmenevseoglu's full-sized avatar
🏠
Working from home

Okan Menevşeoğlu okanmenevseoglu

🏠
Working from home
View GitHub Profile
@okanmenevseoglu
okanmenevseoglu / postgres-create-drop-index-online.sql
Last active January 29, 2018 11:28
Create/Drop a database index online (without locking the table) on PostgreSQL
CREATE INDEX CONCURRENTLY {indexName} ON {tableName} ({columnName});
DROP INDEX CONCURRENTLY {indexName};