Not sure if I fully understand your comment. But my understanding is that this option is defined at cluster level during the creation of the cluster.
As described in the SPD Server SQL Cluster Operations for the cluster creation:
After you have organized the SPD Server tables, issue a PROC SPDO command to bind the tables into a dynamic cluster table. The general form for the PROC SPDO cluster create command is as follows:
CLUSTER CREATE <cluster-tablename> MEM|MEMBER=<membername>
MAXSLOT=<max-slot-num-spec> UNIQUEINDEX=YES|NO
DELETE=YES|NO;
The CLUSTER CREATE command options are as follows:
UNIQUEINDEX=YES|NO validates a unique index. The default setting is YES.
DELETE=YES|NO permanently deletes the cluster and its members. The default setting is NO.
The indicated transformation, as far as I can see, generates code for the following part of the code:
CLUSTER CREATE <cluster-tablename> MEM|MEMBER=<membername>
MAXSLOT=<max-slot-num-spec>;
However there are no possibilities - what I can see - to add/alter either the UNIQUEINDEX or DELETE option
EDIT:
For reference (from the SPD Server 4.4 Administration Guide):
"The CLUSTER CREATE command in PROC SPDO has a new option that allows the user to specify whether unique indexes that are defined in the member tables should be validated and marked as unique in the cluster. If the UNIQUEINDEX option is set to No, then unique indexes are not validated, and the cluster metadata does not mark the indexes as unique within the cluster. If the UNIQUEINDEX option is not specified, then it defaults to YES and the indexes are validated and marked unique within the cluster."
We do not require this validation and as such would like to set the option to NO.
... View more