Database Error Messages

ORA-00948

ALTER CLUSTER statement no longer supported

Cause

The ALTER CLUSTER statement has been withdrawn.


Action

To add data to a cluster from an existing table, use the following series of SQL statements:

CREATE TABLE newtable SELECT * FROM oldtable CLUSTER clustername; DROP oldtable; RENAME TABLE newtable oldtable;