forked from docs/doc-exports
Reviewed-by: Hasko, Vladimir <vladimir.hasko@t-systems.com> Co-authored-by: Yang, Tong <yangtong2@huawei.com> Co-committed-by: Yang, Tong <yangtong2@huawei.com>
2.4 KiB
2.4 KiB
Deleting a CarbonData Table
Scenario
Unused CarbonData tables can be deleted. After a CarbonData table is deleted, its metadata and loaded data are deleted together.
Procedure
- Run the following command to delete a CarbonData table:
DROP TABLE [IF EXISTS] [db_name.]table_name;
db_name is optional. If db_name is not specified, the table named table_name in the current database is deleted.
For example, run the following command to delete the productSalesTable table in the productdb database:
DROP TABLE productdb.productSalesTable;
- Run the following command to confirm that the table is deleted:
SHOW TABLES;
Parent topic: Using CarbonData (for Versions Earlier Than MRS 3.x)