Lists information about the members in a cluster table.
See: | For detailed information about cluster tables, see “Dynamic Cluster Tables” in SAS Scalable Performance Data Server: User’s Guide. |
specifies the name of an existing cluster table.
(optional) specifies the name of an output SAS data set to store the output. Specify the data set name in this form:
libref.data-set-name
specifies to write detail information about each member table. When OUT= is also specified, it adds columns named Variable Name, Minimum Value, and Maximum Value to the OUT= data set. When the OUT= option is omitted, the CLUSTER LIST statement writes output to STDOUT.
Interaction | The /VERBOSE argument must precede the OUT= argument in the CLUSTER LIST command. |
cluster list Sales_History;
cluster list Sales_History /verbose out=mylib.outfile;