> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kinetica.com/llms.txt
> Use this file to discover all available pages before exploring further.

# ALTER SCHEMA

Alters the configuration of a [schema](/content/sql/ddl/create-schema#sql-create-schema).  The
name of a *schema* is the only property that can be altered.

<a id="sql-alter-schema-rename" />

## Rename Schema

A [schema](/content/sql/ddl/create-schema#sql-create-schema) can be renamed.

```sql title="Rename Schema Syntax" theme={null}
ALTER SCHEMA <schema name>
RENAME TO <new schema name>
```

```sql Rename Schema Example theme={null}
ALTER SCHEMA example_container
RENAME TO example_container_renamed
```
