docs: create sysadmin/Databases/Clickhouse/Query-size-tables
parent
f12a5ae974
commit
47dff00dad
|
|
@ -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>
|
||||||
Loading…
Reference in New Issue