You can use one of the RESTRICT or CASCADE keywords to specify how the MOVE TABLE statement treats dependencies among database objects. If you include neither of these keywords, the default mode is RESTRICT.
The CASCADE keyword of MOVE TABLE removes the following database objects, if they exist, that are related to source table:
The RESTRICT keyword has no effect unless source table has one or more referential constraints or views defined on it, or unless a violations or diagnostics table is associated with it. If you explicitly specify RESTRICT (or equivalently, if you do not specify CASCADE, thereby making RESTRICT the default mode), the MOVE TABLE operation fails with an error if any of the following conditions are true for source table:
Unlike the DROP TABLE statement, whose default mode is CASCADE, the RESTRICT mode is the default mode for the MOVE TABLE statement.
Enterprise Edition Home | Express Edition Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]