Untitled

 avatar
unknown
plain_text
2 years ago
727 B
14
Indexable
/*Create Library SASMS*/ 
LIBNAME SASMS '/home/u63685870'; 
 
/*Change Customers.csv to sas file and save in SASMS library*/ 
proc import DATAFILE='/home/u63685870/Customers.csv' 
     OUT=SASMS.Customers 
     DBMS=CSV REPLACE; 
     GETNAMES=YES; 
run; 
 
/*Change Invoice.csv to sas file and save in SASMS library*/ 
proc import DATAFILE='/home/u63685870/Invoice.csv' 
     OUT=SASMS.Invoice 
     DBMS=CSV REPLACE; 
     GETNAMES=YES; 
     DELIMITER=';'; 
run; 
 
/*Change Payment_Method.csv to sas file and save in SASMS library*/ 
proc import DATAFILE='/home/u63685870/Payment_Method.csv' 
     OUT=SASMS.Payment_Method 
     DBMS=CSV REPLACE; 
     GETNAMES=YES; 
     DELIMITER=';'; 
run; 
 
Editor is loading...
Leave a Comment