Examples Using Remote Library Services (RLS) |
Purpose |
This example enables you to take advantage of a mainframe's superior data handling and security features, while you work in a user-friendly GUI environment. RLS is used to update server data. This application of RLS eliminates the need to transfer a disk copy of the data to the client session before processing the data. It also involves low volume transaction processing.
Program |
1 x mkdir hr.emp.data; libname hr 'hr.emp.data'; data hr.employee; x=1; run; signon remos390; 2 libname rlib REMOTE 'hr.emp.data' server=remos390; 3 proc fsedit data=rlib.employee; run;
Copyright © 2008 by SAS Institute Inc., Cary, NC, USA. All rights reserved.