All Products
Search
Document Center

Tablestore:Delete a time series table

Last Updated:Apr 29, 2026

Call the DeleteTimeseries operation to delete a time series table.

Prerequisites

Parameters

Parameter

Description

timeseriesTableName

The name of the time series table.

Example

The following code shows how to delete a time series table.

private static void deleteTimeseriesTable(TimeseriesClient client) {
    // Specify the name of the time series table. 
    String tableName = "<TIMESERIES_TIME>";
    DeleteTimeseriesTableRequest deleteTimeseriesTableRequest = new DeleteTimeseriesTableRequest(tableName);
    client.deleteTimeseriesTable(deleteTimeseriesTableRequest);
}