To configure a server as a primary XDB Server, you must update the system tables. In the examples, the primary XDB Server is xdbserve.
To update the system tables:
Do not delete any seemingly empty records; these contain space characters in some columns and refer to locations controlled by your local XDB Server.
SET LOCATION TO system;
INSERT INTO sysibm.syslunames VALUES ("remote-server","","","","","");
where remote-server is the name of a remote XDB Server to be accessed. Several of the other columns in the SYSIBM.SYSLUNAMES table are used for security mapping. See the chapter Multiserver Security for more information on using these values.
In the examples used in this topic, the SQL command:
INSERT INTO sysibm.syslunames VALUES ("sales","","","","","");
would have been issued on the XDB Server XDBSERVE.
INSERT INTO sysibm.syslocations VALUES ("remote-location","X", "remote-server","link-type");
where:
link-type is the communication protocol used to connect to the remote server.
In the examples used in this topic, the SQL command:
INSERT INTO sysibm.syslocations VALUES ("orders","X","sales","B");
would have been issued on the XDB Server XDBSERVE.
REFRESH LOCATIONS;