Publish Package Interface |
Retrieves a PROC SQL view from a package.
CALL RETRIEVE_SQLVIEW(entryId, libname, memname, rc);
If the memname
parameter is blank, the RETRIEVE_SQLVIEW CALL
routine creates the PROC SQL view using the original member name as it was
defined at publish time.
The following example retrieves the PROC SQL view WORK.OUTDATA from the package.
lib = 'work'; mem = 'outdata'; CALL RETRIEVE_SQLVIEW(entryId, lib, mem, rc);
Publish Package Interface |