Skip to content

Instantly share code, notes, and snippets.

@filimonov
Created January 11, 2019 13:17
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 filimonov/9f210401b4c2ce16fb0d0c516c8eedd0 to your computer and use it in GitHub Desktop.
Save filimonov/9f210401b4c2ce16fb0d0c516c8eedd0 to your computer and use it in GitHub Desktop.
Create queries to detach all the partitions in clickhouse
select 'ALTER TABLE '||database||'.'||table||' DETACH PARTITION '||partition||';' from system.parts group by database,table,partition ORDER BY database, table, partition FORMAT TSVRaw;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment