![]() Chapter Contents |
![]() Previous |
![]() Next |
| SYSTEM |
| OS/390 specifics: | command, related commands, statements, macros |
| Syntax | |
| Details | |
| Example 1 | |
| Example 2 | |
| See Also |
Syntax |
| SYSTEM(command) |
| Details |
| Example 1 |
In the following example, the SYSTEM function is used to allocate an external file:
data _null_;
rc=system('alloc f(study) da(my.library)');
run;
For a fully qualified data set name, use the following statements:
data _null_;
rc=system("alloc f(study)
da('userid.my.library')");
run;
| Example 2 |
data _null_;
rc=system('alloc f(study)
da(''userid.my.library'')');
run;
| See Also |
![]() Chapter Contents |
![]() Previous |
![]() Next |
![]() Top of Page |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.