Identifying the generic LU names of requesting data sharing groups

As part of configuring a data sharing group for group-generic access, you must identify the generic LU names of requesting data sharing groups.

Procedure

To identify the generic LU names of requesting data sharing groups:

Use the INSERT statement to add the generic LU names of requesting data sharing groups to the LUNAME column of the server’s SYSIBM.LUNAMES table.

Example

Begin general-use programming interface information.

Assume that the generic LU names of two requesting data sharing groups are LUDSG1 and LUDSG2. Use the following SQL statements to populate the SYSIBM.LUNAMES table with the generic LU names.

INSERT INTO SYSIBM.LUNAMES (LUNAME)
   VALUES ('LUDSG1');
INSERT INTO SYSIBM.LUNAMES (LUNAME)
   VALUES ('LUDSG2');

End general-use programming interface information.

An excerpt of the server's SYSIBM.LUNAMES table would look similar to the following table.

Table 1. Generic LU names of requesting data sharing groups in a Db2 server's SYSIBM.LUNAMES table. Not all columns are shown.
LUNAME GENERIC
LUDSG1  
LUDSG2