Syntax
Clauses
ADD COLUMN
- If your table is defined with a schema registry, you can change the table schema by
ALTER TABLE t REFRESH SCHEMAorALTER TABLE ADD COLUMN. - Columns added by this command cannot be used by any existing materialized views or indexes. You must create new materialized views or indexes to reference it.
DROP COLUMN
- If your table is defined with a schema registry, you can change the table schema by
ALTER TABLE t REFRESH SCHEMAorALTER TABLE DROP COLUMN. - You cannot drop columns referenced by materialized views or indexes.
- To drop a column referenced by a generated column, you must first drop the generated column.
OWNER TO
rw_table_fragments table.
SET SCHEMA
SET PARALLELISM
3 by the SET command.
SET PARALLELISM to change the parallelism and view the change:
SWAP WITH
RENAME TO
REFRESH SCHEMA
If a downstream fragment references a column that is either missing or has undergone a type change in the updated schema, the command will be declined.
SET SOURCE_RATE_LIMIT
SOURCE_RATE_LIMIT, refer to How to view runtime parameters.
Example
Example
Example
SET BACKFILL_RATE_LIMIT
BACKFILL_RATE_LIMIT, refer to How to view runtime parameters.
Examples