/* C07S4D01.sas */ /* First SAS Session: */ options NOWORKTERM; proc sql; create table schedule as select * from ia.Schedule ; quit; /* Second SAS Session: */ sas -NOWORKINIT proc print data = schedule; run;