Alter an existing table
ALTER [BLOB] TABLE table_name
{ SET ( parameter = value [ , ... ] ) |
RESET ( parameter [ , ... ] )
}
ALTER TABLE can be used to alter an existing table.
SET can be used to change a table parameter to a different value. Using RESET will reset the parameter to its default value.
Use the BLOB keyword in order to alter a blob table (see Blob Support).
table_name: | The name of the table to alter. |
---|---|
parameter: | The name of the parameter that is set to a new value or its default. |
See the CREATE TABLE WITH Clause for a list of available parameters.