You can create a cogroup from:
The following example shows the onutil CREATE COGROUP command to create a cogroup from coserver names for the first six coservers shown in Figure 83:
% onutil 1> create cogroup acctg_cogroup_east 2> from eds.1, eds.2, eds.3, eds.4, eds.5, eds.6;
The following example shows the CREATE COGROUP command to create a cogroup from a coserver range identifier for the next six coservers:
% onutil 1> CREATE COGROUP acctg_cogroup_west 2> FROM eds.%r(7..12);
To produce a list of coserver names, the %r formatting character is iteratively substituted with the integer values that the range list specifies.
The following example shows the CREATE COGROUP command to create a cogroup from a combination of coserver names and coserver range identifier:
% onutil 1> CREATE COGROUP acctg_cogroup_west 2> FROM eds.5, eds.%r(7..12);