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

# Сброс параметров TTL

С помощью подкоманды `table ttl reset` вы можете выключить [TTL](https://ydb.tech/docs/ru/concepts/ttl.md?version=main) для указанной таблицы.

Общий вид команды:

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

* `global options` — [глобальные параметры](https://ydb.tech/docs/ru/reference/ydb-cli/commands/global-options.md?version=main).
* `table path` — путь таблицы.

Посмотрите описание команды выключения TTL:

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

## Примеры {examples}

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

В примерах используется профиль `quickstart`, подробнее смотрите в [Создание профиля для соединения с тестовой БД](https://ydb.tech/docs/ru/reference/ydb-cli/profile/create.md?version=main#quickstart).

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

Выключите TTL для таблицы `series`:

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