| Publishing Packages |
| Syntax | |
| Arguments | |
| Details |
Syntax |
| CALL RETRIEVE_SQLVIEW(entryId, libname, memname, rc); |
identifies the PROC SQL view entry.
| Type: | Numeric |
| Direction: | Input |
specifies the SAS library that will contain the retrieved PROC SQL view.
| Type: | Character |
| Direction: | Input |
specifies the member name of the PROC SQL view.
| Type: | Character |
| Direction: | Input |
receives a return code.
| Type: | Numeric |
| Direction: | Output |
| Details |
If the memname parameter is blank, then the RETRIEVE_SQLVIEW CALL routine creates the PROC SQL view by 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);
Copyright © 2008 by SAS Institute Inc., Cary, NC, USA. All rights reserved.