Home Privacy Policy Feedback Link to us Site Map

Oracle/PLSQL: ORA-00948 Error


Error:

ORA-00948: ALTER CLUSTER statement no longer supported

Cause:

You tried to execute an ALTER CLUSTER statement, but this statement is no longer supported.

Action:

The options to resolve this Oracle error are:
  1. Try adding your cluster from an existing table.

For example:

CREATE TABLE new_table SELECT * FROM old_table CLUSTER cluster_name;

DROP old_table;

RENAME TABLE new_table old_table;