---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.4
alternate:
  - https://ydb.tech/docs/en/reference/ydb-cli/table-ttl-reset.md
  - https://ydb.tech/docs/ru/reference/ydb-cli/table-ttl-reset.md
sourcePath: en/core/reference/ydb-cli/table-ttl-reset.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ydb.tech/docs/en/llms.txt

# Resetting TTL parameters

Use the `table ttl reset` subcommand to reset [TTL](https://ydb.tech/docs/en/concepts/ttl.md) for the specified table.

General format of the command:

```bash
ydb [global options...] table ttl reset <table path>
```

* `global options`: [Global parameters](https://ydb.tech/docs/en/reference/ydb-cli/commands/global-options.md).
* `table path`: The table path.

View the description of the TTL reset command:

```bash
ydb table ttl reset --help
```

## Examples {examples}

<!-- source: en/_includes/ydb-cli-profile.md -->
{% note info %}

The examples use the `quickstart` profile. To learn more, see [Creating a profile to connect to a test database](https://ydb.tech/docs/en/reference/ydb-cli/profile/create.md#quickstart).

{% endnote %}
<!-- endsource: en/_includes/ydb-cli-profile.md -->

Reset TTL for the `series` table:

```bash
ydb -p quickstart table ttl reset \
  series
```
