SYSCAPABILITY system table

CREATE TABLE SYS.SYSCAPABILITY (
	capid INT,
	capvalue CHAR(128),
	svrid INT, 
	PRIMARY KEY (svrid),
	FOREIGN KEY REFERENCES SYS.SYSSERVERS,
	FOREIGN KEY REFERENCES SYS.SYSCAPABILITYNAME
)

Each row identifies a capability of a remote server.

capid An integer that identifies the capability, as listed in SYSCAPABILITYNAME.

capvalue The value of the capability.

svrid The server to which the capability applies, as listed in SYSSERVERS.