Advertisement
Guest User

Untitled

a guest
Sep 3rd, 2015
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. data _null_ ;
  2. set metadata ;
  3. by libname memname ;
  4. file sascode ;
  5.  
  6. if first.libname then put "proc datasets lib=" libname " nolist ;";
  7. if first.memname then put " modify "memname ";";
  8. if last.libname then put " run;
  9. if eof then put "quit ;";
  10. run ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement