---
metadata:
  - name: generator
    content: Diplodoc Platform v5.50.6
alternate:
  - https://ydb.tech/docs/en/yql/reference/syntax/drop-resource-pool-classifier.md
  - https://ydb.tech/docs/ru/yql/reference/syntax/drop-resource-pool-classifier.md
sourcePath: en/core/yql/reference/syntax/drop-resource-pool-classifier.md
---
> **Documentation Index:** Fetch the complete configuration index at https://ydb.tech/docs/en/llms.txt

# DROP RESOURCE POOL CLASSIFIER

`DROP RESOURCE POOL CLASSIFIER` removes a [resource pool classifier](https://ydb.tech/docs/en/concepts/glossary.md#resource-pool-classifier).

## Syntax

```yql
DROP RESOURCE POOL CLASSIFIER <name>
```

### Parameters

* `name` — name of the resource pool classifier to drop.

## Permissions

The `ALL` [permission](https://ydb.tech/docs/en/yql/reference/syntax/grant.md#permissions-list) on the database is required. Example:

```yql
GRANT 'ALL' ON `/my_db` TO `user1@domain`;
```

## Examples

The following removes the classifier named `olap_classifier`:

```yql
DROP RESOURCE POOL CLASSIFIER olap_classifier;
```

## See also

* [Workload Manager — resource consumption management](https://ydb.tech/docs/en/dev/resource-consumption-management.md)
* [CREATE RESOURCE POOL CLASSIFIER](https://ydb.tech/docs/en/yql/reference/syntax/create-resource-pool-classifier.md)
* [ALTER RESOURCE POOL CLASSIFIER](https://ydb.tech/docs/en/yql/reference/syntax/alter-resource-pool-classifier.md)
