# ALTER TABLE COLUMN CACHE | NOCACHE

> **For AI agents:** the complete documentation index is at [llms.txt](https://questdb.com/docs/llms.txt). Every page is available as markdown by appending `.md` to its URL, or by sending an `Accept: text/markdown` request header.

`ALTER TABLE ALTER COLUMN CACHE | NOCACHE` changes the cache setting for a
[symbol](/docs/concepts/symbol/) column.

## Syntax

```questdb-sql
ALTER TABLE tableName ALTER COLUMN columnName { CACHE | NOCACHE };
```

- `columnName` is the `symbol` data type.
- By default, a symbol column is cached.
- Refer to the [Guide on symbol](/docs/concepts/symbol/) for the
  advantages of caching `symbols`.

## Examples

```questdb-sql
ALTER TABLE trades ALTER COLUMN side NOCACHE;
```
