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

> MOVE 액세스 엔터티 SQL 문에 대한 문서

# MOVE 액세스 엔터티 SQL 문

이 SQL 문은 액세스 엔터티를 한 액세스 저장소에서 다른 액세스 저장소로 이동하는 데 사용됩니다.

구문:

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

현재 ClickHouse에는 5개의 액세스 저장소가 있습니다.

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

예시:

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

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