Tag Archives: ORA-00948

ORA-00948: ALTER CLUSTER statement no longer supported

ORA-00948: ALTER CLUSTER statement no longer supported

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;

Back to previous menu

https://support.oracle.com/

http://www.oracle.com/