SPDO Procedure

CLUSTER UNDO Statement

Reverts a cluster table back to its unbound tables.

Requirement: You must have Control access to the cluster table to undo it.

Syntax

CLUSTER UNDO cluster- table-name;

Arguments

cluster-tablename

specifies the name of an existing cluster table to undo.

Details

Use CLUSTER UNDO when you want to destroy the metadata that is associated with a cluster, but want to keep the source tables.

Example

This CLUSTER UNDO statement reverts the cluster Sales_History back to its original tables. Undoing the cluster frees you to create a new cluster table named Sales_History with a new set of member tables. Meanwhile, the original tables continue to exist.
proc spdo library=libref;
   cluster undo Sales_History;
quit;
Last updated: February 3, 2017