> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

> Documentation for MOVE access entity statement

# MOVE access entity statement

This statement allows to move an access entity from one access storage to another.

Syntax:

```sql theme={null}
MOVE {USER, ROLE, QUOTA, SETTINGS PROFILE, ROW POLICY} name1 [, name2, ...] TO access_storage_type
```

Currently, there are five access storages in ClickHouse:

* `local_directory`
* `memory`
* `replicated`
* `users_xml` (ro)
* `ldap` (ro)

Examples:

```sql theme={null}
MOVE USER test TO local_directory
```

```sql theme={null}
MOVE ROLE test TO memory
```
