Alter Table
This section shows you the translations related to ALTER TABLE.
Some parts in the output code are omitted for clarity reasons.
1. Description
Use the ALTER TABLE statement to alter the definition of a nonpartitioned table, a partitioned table, a table partition, or a table subpartition. For object tables or relational tables with object columns, use ALTER TABLE to convert the table to the latest definition of its referenced type after the type has been altered (Oracle documentation).
Oracle syntax
To review Snowflake syntax, review the following documentation.
2. Sample Source Patterns
2.1. Alter table with clauses
memoptimize_read_clause and memoptimize_read_clause are not applicable in Snowflake so are being removed.
Oracle
Snowflake
Only some column_clauses and constraint_clauses are applicable in Snowflake. In Oracle alter table allows modifying properties from partitions created but in Snowflake, these actions are not required
2.2. Alter table with not supported cases
Oracle
Snowflake
2.3. ADD CONSTRAINT action
The ADD CONSTRAINT action has an equivalent in Snowflake, but it only one constraint can be added per ALTER TABLE statement, so it will be commented when the statement contains two or more constraints.
enable_disable_clause is removed since it is not relevant in Snowflake.
Oracle
Snowflake
3. Known Issues
Some properties on the tables may be adapted to or not applicable.
4. Related EWIs
Last updated