14%let work=%sysfunc(pathname(work));
17libname sashlp
"&work";
19create table members as
20 select distinct lowcase(memname) as memname
21 from dictionary.tables
22 where upcase(libname)=
"SASHELP"
26 call execute(cats(
'data sashlp.',memname,
';set sashelp.',memname,
';run;'));
31%mp_getddl(sashlp, schema=work, fref=tempref)
32%mp_lib2inserts(sashlp, schema=work, outref=tempref,maxobs=50)
35libname sashlp "&path";
42 desc=Able to export 20 tables from sashelp using mp_lib2inserts,
43 outds=work.test_results