ALTER TABLE

Alter an existing table

Synopsis

ALTER [BLOB] TABLE table_name
{ SET ( parameter = value [ , ... ] ) |
  RESET ( parameter [ , ... ] )
}

Description

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).

Parameters

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.