Advertisement
Guest User

Untitled

a guest
Oct 8th, 2014
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SAS 0.24 KB | None | 0 0
  1.     proc sql noprint;
  2.         create table temp as select
  3.         deal_no, cust_no, kid, amount from &_input.;
  4.     quit;
  5.  
  6.     data &_output;
  7.         set work.temp;
  8.     run;
  9.  
  10.     proc export data=temp file="&path_1"
  11.     label dbms=dlm replace;
  12.     delimiter=';';
  13.     quit;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement