We need to be able to read a RDF table from a remote LPAR. How to do so?
Release : 13.5 14.0
Component : OPS/MVS
Use the SYSTEM keyword to indicate the MSF node where the table resides. For example:
ADDRESS SQL
"SELECT NAME FROM STCTBL SYSTEM(msfid)"
IF SQLCODE = 0 THEN
DO I = 1 TO NAME.0
SAY 'I=' I 'NAME ' NAME.I
END