diff --git a/docs/products/clickhouse/howto/manage-databases-tables.rst b/docs/products/clickhouse/howto/manage-databases-tables.rst index 660b475c1a..214beaf5a9 100644 --- a/docs/products/clickhouse/howto/manage-databases-tables.rst +++ b/docs/products/clickhouse/howto/manage-databases-tables.rst @@ -48,3 +48,16 @@ Select a table engine Part of the table definition includes a targeted table engine. The full list of supported table engines in Aiven for ClickHouse can be found :doc:`in this article <../reference/supported-table-engines>`. Aiven for ClickHouse uses ``replicated`` variants of table engines to ensure high availability. Even if you select ``MergeTree`` engine, we will automatically use the replicated variant on our side. With this knowledge, try out an example dataset described :doc:`over here `. + +Remove a table +-------------- + +A table can be removed both through the command line and Aiven web interface. + +.. code:: sql + + DROP TABLE transactions.expenses; + +.. note:: + + Clickhouse ``max_table_size_to_drop`` and ``max_partition_size_to_drop`` are disabled in Aiven service, which allows any user with the ``DROP`` privilege to drop a table of any size. Please, consider :doc:`granting ` only necessary permissions to database users.