docs: create sysadmin/Databases/Clickhouse/Query-size-tables

main
Федоров Дмитрий 2024-03-13 10:11:59 +00:00 committed by Dmitriy Fedorov
parent f12a5ae974
commit 47dff00dad
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<!--
title: Запрос размера таблиц Clickhouse
description:
published: true
date: 2024-03-13T10:11:53.025Z
tags: clickhouse, query
editor: ckeditor
dateCreated: 2024-03-13T10:11:53.025Z
-->
<pre><code class="language-plaintext">SELECT table,
formatReadableSize(sum(bytes)) as size,
min(min_date) as min_date,
max(max_date) as max_date
FROM system.parts
WHERE active
GROUP BY table</code></pre>