documentation/query/sql/alter-table-change-symbol-capacity.md
Changes the capacity of an existing SYMBOL column in a table.
The capacity of the SYMBOL column is altered without rewriting the data already stored in the table partitions. This operation allows you to adjust the maximum number of distinct values that can be stored in a SYMBOL column without the overhead of rebuilding the entire table.
Change the capacity of the SYMBOL column ik in table x to 512:
ALTER TABLE x ALTER COLUMN ik SYMBOL CAPACITY 512;
Increase the capacity of the SYMBOL column department in the table employees
to 10000:
ALTER TABLE employees ALTER COLUMN department SYMBOL CAPACITY 10000;