Creates a cluster table.
Requirements: | You must have Control access to all candidate member tables. |
All of the tables must be in the same domain and have the same structure. See Member Table Requirements for Creating Dynamic Cluster Tables in SAS Scalable Performance Data Server: User’s Guide. |
specifies the name of the cluster to be created.
specifies the name of a member table. To specify multiple tables, use multiple MEMBER= statements.
Alias | MEM= |
specifies whether the cluster and all its members can be permanently deleted with the CLUSTER DESTROY statement. The default is NO.
specifies the maximum number of slots, or member tables, to be allocated for the cluster. The default setting for the MAXSLOT= parameter is -1. This value configures the server to permit dynamic growth of the number of member tables in a cluster, up to the specified system maximum value. The system maximum value for the number of slots is specified by the MAXGENNUM parameter in the spdsserv.parm configuration file. If there is a known maximum number of slots to be enforced for a particular cluster table, it is more efficient to specify the limitation using the MAXSLOT= argument.
specifies whether the unique indexes that are defined in the member tables will be validated and marked as unique in the cluster table. The default setting is YES.
proc spdo library=libref;
cluster create Sales_History
mem=sales201601
mem=sales201602
mem=sales201603
mem=sales201604
mem=sales201605
mem=sales201606;
maxslot=24;