Hi
I am trying to get through lesson 3 of SAS essentials.
It tells me to run the libname sas at the start of the lesson to create a library called PG1. When i run this program, it states it was successful.
However when i come to do any of the class practices it keeps saying the files do not exist. PG1 is blank. Ive run the libname countless time, and nothing seems to fix it. I have gone through the whole of lesson 3 but id like to be able to practice it as well
Any help would be appreciated
Many Thanks
Its okay, its all fixed now. There was another step called sas setup that i wasn't using.
Its all working correctly now
@mel2 wrote:
Hi
I am trying to get through lesson 3 of SAS essentials.
It tells me to run the libname sas at the start of the lesson to create a library called PG1. When i run this program, it states it was successful.
However when i come to do any of the class practices it keeps saying the files do not exist. PG1 is blank. Ive run the libname countless time, and nothing seems to fix it. I have gone through the whole of lesson 3 but id like to be able to practice it as well
Any help would be appreciated
Many Thanks
Since LIBNAME points to a storage location have you looked in that folder with operating system tools? Do the data sets, I assume, exist there? Depending on your installation things may be case sensitive and if the files have upper case names the version of SAS you are running may not recognize them.
You probably should go back to instructions that come with the training on creating the data sets, rerun the code and show us the LOG from running that code. To share the log copy the text from the LOG window and on the forum open a text box with the </> icon on the forum then paste the text. This is important because the message windows on the forum reformat text which may affect the usefulness of any of the diagnostic messages SAS often provides to indicate problems with code.
Hi, here is the initial setup log. Thanks
1 OPTIONS NOSYNTAXCHECK; 2 TITLE; 3 FOOTNOTE; 4 OPTIONS LOCALE=en_US DFLANG=LOCALE; 5 DATA _NULL_; 6 RUN; NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 469.03k OS Memory 23720.00k Timestamp 05/11/2021 12:29:07 PM Step Count 56 Switch Count 0 Page Faults 0 Page Reclaims 24 Page Swaps 0 Voluntary Context Switches 0 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 7 OPTIONS VALIDVARNAME=ANY; 8 OPTIONS VALIDMEMNAME=EXTEND; 9 FILENAME _HTMLOUT TEMP; 10 FILENAME _RTFOUT TEMP ENCODING='UTF-8'; 11 FILENAME _PDFOUT TEMP; 12 FILENAME _GSFNAME TEMP; 13 FILENAME _DATAOUT TEMP; 14 %LET SYSCC=0; 15 %LET _CLIENTAPP='SAS Studio'; 16 %LET _CLIENTAPPABREV=Studio; 17 %LET _CLIENTAPPVERSION=3.8; 18 %LET _CLIENTVERSION=3.8; 19 %LET _CLIENTMODE=wip; 20 %LET _SASSERVERNAME=%BQUOTE(SASApp); 21 %LET _SASHOSTNAME=%BQUOTE(odaws02-euw1); 22 %LET _SASPROGRAMFILEHOST=%BQUOTE(odaws02-euw1); 23 %LET _CLIENTUSERID=%BQUOTE(u50121382); 24 %LET _CLIENTUSERNAME=%BQUOTE(u50121382); 25 %LET CLIENTMACHINE=%BQUOTE(HOST-80-43-6-76.AS13285.NET); 26 %LET _CLIENTMACHINE=%BQUOTE(HOST-80-43-6-76.AS13285.NET); 27 %let SASWORKLOCATION="%sysfunc(getoption(work))/"; 28 FILENAME _CWD '.'; 29 DATA _NULL_; 30 CALL SYMPUT('_SASWORKINGDIR',PATHNAME('_CWD')); 31 RUN; NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 498.96k OS Memory 23720.00k Timestamp 05/11/2021 12:29:07 PM Step Count 57 Switch Count 0 Page Faults 0 Page Reclaims 24 Page Swaps 0 Voluntary Context Switches 0 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 32 FILENAME _CWD; NOTE: Fileref _CWD has been deassigned. 33 34 %LET _SASPROGRAMFILE = %NRQUOTE(%NRSTR(/home/u50121382/EPG194/createdataPG1_oda.sas)); 35 %LET _BASEURL = %BQUOTE(https://odamid-euw1.oda.sas.com/SASStudio/); 36 %LET _EXECENV=SASStudio; 37 DATA _NULL_; 38 CALL SYMPUT("GRAPHINIT",""); 39 CALL SYMPUT("GRAPHTERM",""); 40 RC=TSLVL('SASXGOPT','N'); 41 _ERROR_=0; 42 IF (RC^=' ') THEN DO; 43 CALL SYMPUT("GRAPHINIT","GOPTIONS RESET=ALL GSFNAME=_GSFNAME;"); 44 CALL SYMPUT("GRAPHTERM","GOPTIONS NOACCESSIBLE;"); 45 END; 46 RUN; NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 528.78k OS Memory 23720.00k Timestamp 05/11/2021 12:29:07 PM Step Count 58 Switch Count 0 Page Faults 0 Page Reclaims 25 Page Swaps 0 Voluntary Context Switches 0 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 47 DATA _NULL_; 48 RC=SYSPROD("PRODNUM002"); 49 IF (RC^=1) THEN DO; 50 CALL SYMPUT("GRAPHINIT",""); 51 CALL SYMPUT("GRAPHTERM",""); 52 END; 53 RUN; NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 527.78k OS Memory 23720.00k Timestamp 05/11/2021 12:29:07 PM Step Count 59 Switch Count 0 Page Faults 0 Page Reclaims 25 Page Swaps 0 Voluntary Context Switches 0 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 54 %LET _DATAOUT_MIME_TYPE=; 55 %LET _DATAOUT_NAME=; 56 %LET _DATAOUT_TABLE=; 57 %LET _DATAOUT_URL=; 58 %SYMDEL _DATAOUT_MIME_TYPE _DATAOUT_NAME _DATAOUT_URL _DATAOUT_TABLE; 59 %LET _SASWS_ = %BQUOTE(/home/u50121382); 60 %LET _SASWSTEMP_=%BQUOTE(/home/u50121382/.sasstudio/.images/7054c973-0695-4ff4-b148-397aab1f3447); 61 ODS LISTING CLOSE; 62 ODS AUTONAVIGATE OFF; 63 ODS GRAPHICS ON; 64 ODS HTML5 (ID=WEB) DEVICE=PNG GPATH="&_SASWSTEMP_" ENCODING=utf8 FILE=_HTMLOUT (TITLE='Results: createdataPG1_oda.sas') 64 ! STYLE=Htmlblue OPTIONS(BITMAP_MODE='INLINE' OUTLINE='ON' SVG_MODE='INLINE' 64 ! CSS_PREFIX='.ods_7054c973-0695-4ff4-b148-397aab1f3447' BODY_ID='div_7054c973-0695-4ff4-b148-397aab1f3447' ); NOTE: Writing HTML5(WEB) Body file: _HTMLOUT 65 ODS RTF (ID=WEB) STYLE=Rtf FILE=_RTFOUT sasdate; NOTE: Writing RTF Body file: _RTFOUT 66 ODS PDF (ID=WEB) STYLE=Pearl FILE=_PDFOUT; NOTE: Writing ODS PDF(WEB) output to DISK destination "_PDFOUT", printer "PDF". 67 &GRAPHINIT; 68 OPTIONS FIRSTOBS=1; 69 OPTIONS OBS=MAX; 70 OPTIONS DTRESET DATE NUMBER NOTES; 71 OPTIONS NOSYNTAXCHECK; 72 73 /************************************************************* 74 Note: This program will not run properly on z/OS. 75 Only Windows, Linux and UNIX are supported. 76 Values for PATH are CASE SENSITIVE. 77 *************************************************************/ 78 %let path=/home/&sysuserid/EPG194; 79 80 /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 81 WARNING: DO NOT ALTER CODE BELOW THIS LINE IN ANY WAY 82 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ 83 84 /* Make sure path consistently uses forward slashes */ 85 %let course=epg194; 86 %let path=%qsysfunc(translate(%superq(path),/,\)); 87 %let original_path=%superq(path); 88 89 /*options nomprint nosymbolgen nonotes nosource dlcreatedir;*/ 90 options mprint symbolgen notes source; 91 92 %macro unpack(unzip /* Full path pointing to where to create the EPG194 data */ 93 ,zipfilename /* ZIP File name (used to download with PROC HTTP) */ 94 ,coursecode /* Represents the top level folder of the ZIP file; can be used for conditional logic */); 95 96 %local rc fid fileref fnum memname big_zip big_zip_found data_zip data_zip_found url; 97 %global cre8data_success path; 98 %let cre8data_success=0; 99 %let url=%str(http://dl.liveweb.sas.com/eldata/pg194_oda.zip); 100 101 102 /* Is the path specified valid? */ 103 %let fileref=unzip; 104 %let rc=%sysfunc(filename(fileref,%superq(unzip))); 105 %let path_found=%sysfunc(fileref(unzip)); 106 %if &path_found ne 0 %then %do; 107 %put %sysfunc(sysmsg()); 108 %put ERROR: ************************************************************; 109 %put ERROR- Path specified for data files (%superq(unzip)) is not valid.; 110 %put ERROR- Remember: PATH values in UNIX and LINUX are case sensitive. ; 111 %put ERROR- ************************************************************; 112 %let rc=%sysfunc(filename(fileref)); 113 %return; 114 %end; 115 116 /* Get just the filename of the zipfile, not the .ZIP extension */ 117 %if %qscan(%qupcase(%superq(zipfilename)),2,.) = %str(ZIP) %then %do; 118 %let zipfilename = %qscan(%superq(zipfilename),1,.) ; 119 %end; 120 121 /* Test for the presence of the main ZIP file in the path */ 122 %let fileref=bigzip; 123 %let rc=%sysfunc(filename(fileref,%superq(unzip)/%superq(zipfilename).zip,zip)); 124 %let big_zip_found=%sysfunc(fileref(bigzip)); 125 %if &big_zip_found ne 0 %then %do; 126 %put NOTE: %superq(zipfilename).zip not found in %superq(unzip).; 127 %put NOTE- Attempting to download the ZIP file from the internet.; 128 filename BigZip "%superq(unzip)/%superq(zipfilename).zip"; 129 proc http 130 url="%superq(url)" 131 out=BigZip method="get"; 132 ; 133 134 run; 135 136 %let big_zip_found=%sysfunc(fileref(bigzip)); 137 %if &big_zip_found ne 0 %then %do; 138 %put ERROR: *************************************************************; 139 %put ERROR- Attempt to download %superq(zipfilename).zip unsuccessful.; 140 %put ERROR- *************************************************************; 141 filename BigZip; 142 %return; 143 %end; 144 %end; 145 146 options dlcreatedir; 147 libname xx "%superq(path)"; 148 libname xx clear; 149 150 /* Read the "members" (files) from the ZIP file */ 151 /* Create the data folder structure and get a list of files in macro variables */ 152 filename BigZip zip "%superq(unzip)/%superq(zipfilename).zip"; 153 data _null_; 154 length memname pathname $500; 155 fid=dopen("bigzip"); 156 if fid=0 then stop; 157 memcount=dnum(fid); 158 do i=1 to memcount; 159 memname=dread(fid,i); 160 /* Create and empty folder for each folder in the ZIP file */ 161 /* check for trailing / in folder name */ 162 isFolder = (first(reverse(trim(memname)))='/'); 163 /* if isfolder then put memname= isfolder=;*/ 164 if isfolder then do; 165 pathname=cats("&path/",substr(memname,1,length(memname)-1)); 166 put "NOTE: Creating path " pathname; 167 rc1=libname('xx',pathname); 168 rc2=libname('xx'); 169 end; 170 else do; 171 filecount+1; 172 call symputx(cats('out',filecount),memname,'L'); 173 end; 174 end; 175 rc=dclose(fid); 176 call symputx('filecount',filecount,'L'); 177 run; 178 179 %do i=1 %to &filecount; 180 filename out "%superq(unzip)/%superq(out&i)"; 181 data _null_; 182 infile bigzip(%superq(out&i)) 183 lrecl=256 recfm=F length=length eof=eof unbuf; 184 file out lrecl=256 recfm=N; 185 input; 186 put _infile_ $varying256. length; 187 return; 188 eof: 189 stop; 190 run; 191 %end; 192 193 filename bigzip; 194 filename out; 195 filename unzip; 196 197 %let setup=%superq(unzip)/setup.sas; 198 %let cre8data_ready=%sysfunc(fileexist(%superq(setup))); 199 200 %if not &cre8data_ready %then %do; 201 %put; 202 %put ERROR: ********************************************************************; 203 %put ERROR- After unzipping %superq(zipfilename).zip, setup.sas program not found ; 204 %put ERROR- in folder %superq(unzip).; 205 %put ERROR- Download and unzip %superq(zipfilename)_data.zip manually, then; 206 %put ERROR- run cre8data.sas again.; 207 %put ERROR- ********************************************************************; 208 %put; 209 %end; 210 211 %let path=%superq(unzip)/data; 212 213 %include "%superq(setup)"; 214 215 %mend unpack; 216 217 %unpack(%superq(path),epg194.zip,epg194) SYMBOLGEN: Macro variable PATH_FOUND resolves to 0 SYMBOLGEN: Macro variable BIG_ZIP_FOUND resolves to 0 MPRINT(UNPACK): options dlcreatedir; MPRINT(UNPACK): libname xx "/home/u50121382/EPG194"; NOTE: Libref XX refers to the same physical library as PG1. NOTE: Libref XX was successfully assigned as follows: Engine: V9 Physical Name: /home/u50121382/EPG194 MPRINT(UNPACK): libname xx clear; NOTE: Libref XX has been deassigned. MPRINT(UNPACK): filename BigZip zip "/home/u50121382/EPG194/epg194.zip"; MPRINT(UNPACK): data _null_; MPRINT(UNPACK): length memname pathname $500; MPRINT(UNPACK): fid=dopen("bigzip"); MPRINT(UNPACK): if fid=0 then stop; MPRINT(UNPACK): memcount=dnum(fid); MPRINT(UNPACK): do i=1 to memcount; MPRINT(UNPACK): memname=dread(fid,i); MPRINT(UNPACK): isFolder = (first(reverse(trim(memname)))='/'); MPRINT(UNPACK): if isfolder then do; SYMBOLGEN: Macro variable PATH resolves to /home/u50121382/EPG194 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MPRINT(UNPACK): pathname=cats("/home/u50121382/EPG194/",substr(memname,1,length(memname)-1)); MPRINT(UNPACK): put "NOTE: Creating path " pathname; MPRINT(UNPACK): rc1=libname('xx',pathname); MPRINT(UNPACK): rc2=libname('xx'); MPRINT(UNPACK): end; MPRINT(UNPACK): else do; MPRINT(UNPACK): filecount+1; MPRINT(UNPACK): call symputx(cats('out',filecount),memname,'L'); MPRINT(UNPACK): end; MPRINT(UNPACK): end; MPRINT(UNPACK): rc=dclose(fid); MPRINT(UNPACK): call symputx('filecount',filecount,'L'); MPRINT(UNPACK): run; NOTE: Creating path /home/u50121382/EPG194/activities NOTE: Creating path /home/u50121382/EPG194/data NOTE: Creating path /home/u50121382/EPG194/demos NOTE: Creating path /home/u50121382/EPG194/output NOTE: Creating path /home/u50121382/EPG194/practices NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 623.68k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 60 Switch Count 10 Page Faults 0 Page Reclaims 184 Page Swaps 0 Voluntary Context Switches 77 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 SYMBOLGEN: Macro variable FILECOUNT resolves to 91 SYMBOLGEN: Macro variable I resolves to 1 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p101a03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 1 MPRINT(UNPACK): infile bigzip(activities/p101a03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p101a03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p101a03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p101a03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p101a03.sas). NOTE: DATA statement used (Total process time): real time 0.07 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 683.21k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 61 Switch Count 0 Page Faults 0 Page Reclaims 582 Page Swaps 0 Voluntary Context Switches 15 Involuntary Context Switches 0 Block Input Operations 1920 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 2 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p101a04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 2 MPRINT(UNPACK): infile bigzip(activities/p101a04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p101a04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p101a04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p101a04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p101a04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 679.46k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 62 Switch Count 0 Page Faults 0 Page Reclaims 896 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 3 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p102a04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 3 MPRINT(UNPACK): infile bigzip(activities/p102a04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p102a04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p102a04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p102a04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(activities/p102a04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 695.37k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 63 Switch Count 0 Page Faults 0 Page Reclaims 375 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 4 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p102a07.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 4 MPRINT(UNPACK): infile bigzip(activities/p102a07.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p102a07.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p102a07.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p102a07.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(activities/p102a07.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 684.28k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 64 Switch Count 0 Page Faults 0 Page Reclaims 377 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 5 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p102a08.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 5 MPRINT(UNPACK): infile bigzip(activities/p102a08.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p102a08.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p102a08.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p102a08.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p102a08.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 710.96k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 65 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 6 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p102a09.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 6 MPRINT(UNPACK): infile bigzip(activities/p102a09.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p102a09.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p102a09.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p102a09.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p102a09.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 723.03k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 66 Switch Count 0 Page Faults 0 Page Reclaims 381 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 7 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p103a02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 7 MPRINT(UNPACK): infile bigzip(activities/p103a02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p103a02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p103a02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p103a02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p103a02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 723.00k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 67 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 8 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p103a03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 8 MPRINT(UNPACK): infile bigzip(activities/p103a03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p103a03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p103a03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p103a03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p103a03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 723.03k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 68 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 9 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p103a04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 9 MPRINT(UNPACK): infile bigzip(activities/p103a04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p103a04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p103a04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p103a04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p103a04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 736.87k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 69 Switch Count 0 Page Faults 0 Page Reclaims 375 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 10 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p103a06.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 10 MPRINT(UNPACK): infile bigzip(activities/p103a06.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p103a06.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p103a06.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p103a06.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(activities/p103a06.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 743.90k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 70 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 11 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p103a07.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 11 MPRINT(UNPACK): infile bigzip(activities/p103a07.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p103a07.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p103a07.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p103a07.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p103a07.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 746.00k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 71 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 12 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 12 MPRINT(UNPACK): infile bigzip(activities/p104a01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(activities/p104a01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 743.78k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 72 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 13 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 13 MPRINT(UNPACK): infile bigzip(activities/p104a03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p104a03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 745.93k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 73 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 14 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 14 MPRINT(UNPACK): infile bigzip(activities/p104a04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p104a04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 743.65k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 74 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 15 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a05.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 15 MPRINT(UNPACK): infile bigzip(activities/p104a05.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a05.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a05.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a05.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p104a05.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 743.65k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 75 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 16 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a06.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 16 MPRINT(UNPACK): infile bigzip(activities/p104a06.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a06.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a06.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a06.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p104a06.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 743.65k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 76 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 17 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a07.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 17 MPRINT(UNPACK): infile bigzip(activities/p104a07.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a07.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a07.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a07.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p104a07.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 743.87k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 77 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 18 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a08.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 18 MPRINT(UNPACK): infile bigzip(activities/p104a08.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a08.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a08.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a08.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(activities/p104a08.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 743.65k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 78 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 19 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p104a09.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 19 MPRINT(UNPACK): infile bigzip(activities/p104a09.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p104a09.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p104a09.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p104a09.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 2 records were read from the infile library BIGZIP. NOTE: 2 records were read from the infile BIGZIP(activities/p104a09.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 743.65k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 79 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 20 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 20 MPRINT(UNPACK): infile bigzip(activities/p105a01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:07 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p105a01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 743.87k OS Memory 30116.00k Timestamp 05/11/2021 12:29:07 PM Step Count 80 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 21 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 21 MPRINT(UNPACK): infile bigzip(activities/p105a02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 2 records were read from the infile library BIGZIP. NOTE: 2 records were read from the infile BIGZIP(activities/p105a02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 743.65k OS Memory 30116.00k Timestamp 05/11/2021 12:29:08 PM Step Count 81 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 22 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 22 MPRINT(UNPACK): infile bigzip(activities/p105a03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p105a03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 779.50k OS Memory 30116.00k Timestamp 05/11/2021 12:29:08 PM Step Count 82 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 23 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 23 MPRINT(UNPACK): infile bigzip(activities/p105a04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p105a04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 751.37k OS Memory 30116.00k Timestamp 05/11/2021 12:29:08 PM Step Count 83 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 24 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a05.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 24 MPRINT(UNPACK): infile bigzip(activities/p105a05.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a05.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a05.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a05.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(activities/p105a05.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 759.37k OS Memory 30116.00k Timestamp 05/11/2021 12:29:08 PM Step Count 84 Switch Count 0 Page Faults 0 Page Reclaims 375 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 25 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a06.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 25 MPRINT(UNPACK): infile bigzip(activities/p105a06.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a06.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a06.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a06.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p105a06.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 759.37k OS Memory 30116.00k Timestamp 05/11/2021 12:29:08 PM Step Count 85 Switch Count 0 Page Faults 0 Page Reclaims 375 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 26 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a07.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 26 MPRINT(UNPACK): infile bigzip(activities/p105a07.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a07.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a07.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a07.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(activities/p105a07.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 759.37k OS Memory 30116.00k Timestamp 05/11/2021 12:29:08 PM Step Count 86 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 27 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p105a08.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 27 MPRINT(UNPACK): infile bigzip(activities/p105a08.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p105a08.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p105a08.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p105a08.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 12 records were read from the infile library BIGZIP. NOTE: 12 records were read from the infile BIGZIP(activities/p105a08.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 787.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 87 Switch Count 0 Page Faults 0 Page Reclaims 377 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 28 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p106a02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 28 MPRINT(UNPACK): infile bigzip(activities/p106a02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p106a02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p106a02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p106a02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 7 records were read from the infile library BIGZIP. NOTE: 7 records were read from the infile BIGZIP(activities/p106a02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 787.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 88 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 1 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 29 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p106a03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 29 MPRINT(UNPACK): infile bigzip(activities/p106a03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p106a03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p106a03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p106a03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(activities/p106a03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 787.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 89 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 30 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p106a04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 30 MPRINT(UNPACK): infile bigzip(activities/p106a04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p106a04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p106a04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p106a04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(activities/p106a04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 787.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 90 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 31 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p106a05.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 31 MPRINT(UNPACK): infile bigzip(activities/p106a05.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p106a05.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p106a05.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p106a05.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(activities/p106a05.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 843.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 91 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 32 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p107a01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 32 MPRINT(UNPACK): infile bigzip(activities/p107a01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p107a01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p107a01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p107a01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(activities/p107a01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 723.25k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 92 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 24 SYMBOLGEN: Macro variable I resolves to 33 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p107a02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 33 MPRINT(UNPACK): infile bigzip(activities/p107a02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p107a02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p107a02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p107a02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(activities/p107a02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 835.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 93 Switch Count 0 Page Faults 0 Page Reclaims 376 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 34 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p107a03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 34 MPRINT(UNPACK): infile bigzip(activities/p107a03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p107a03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p107a03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p107a03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(activities/p107a03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 835.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 94 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 35 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/activities/p107a04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 35 MPRINT(UNPACK): infile bigzip(activities/p107a04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(activities/p107a04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=activities/p107a04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/activities/p107a04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(activities/p107a04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 835.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 95 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 36 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/_1create_class.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 36 MPRINT(UNPACK): infile bigzip(data/_1create_class.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/_1create_class.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/_1create_class.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/_1create_class.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 37844 records were read from the infile library BIGZIP. NOTE: 37844 records were read from the infile BIGZIP(data/_1create_class.sas). NOTE: DATA statement used (Total process time): real time 0.10 seconds user cpu time 0.06 seconds system cpu time 0.02 seconds memory 835.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 96 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 181 Involuntary Context Switches 3 Block Input Operations 1912 Block Output Operations 18928 SYMBOLGEN: Macro variable I resolves to 37 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/_2create_natpark.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 37 MPRINT(UNPACK): infile bigzip(data/_2create_natpark.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/_2create_natpark.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/_2create_natpark.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/_2create_natpark.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 26730 records were read from the infile library BIGZIP. NOTE: 26730 records were read from the infile BIGZIP(data/_2create_natpark.sas). NOTE: DATA statement used (Total process time): real time 0.08 seconds user cpu time 0.06 seconds system cpu time 0.01 seconds memory 835.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 97 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 149 Involuntary Context Switches 0 Block Input Operations 2872 Block Output Operations 13368 SYMBOLGEN: Macro variable I resolves to 38 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/_3create_storm.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 38 MPRINT(UNPACK): infile bigzip(data/_3create_storm.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/_3create_storm.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/_3create_storm.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/_3create_storm.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 30026 records were read from the infile library BIGZIP. NOTE: 30026 records were read from the infile BIGZIP(data/_3create_storm.sas). NOTE: DATA statement used (Total process time): real time 0.08 seconds user cpu time 0.05 seconds system cpu time 0.02 seconds memory 835.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 98 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 127 Involuntary Context Switches 0 Block Input Operations 1872 Block Output Operations 15016 SYMBOLGEN: Macro variable I resolves to 39 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/class.json"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 39 MPRINT(UNPACK): infile bigzip(data/class.json) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/class.json) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/class.json NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/class.json, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(data/class.json). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 835.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 99 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 40 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/class.xlsx"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 40 MPRINT(UNPACK): infile bigzip(data/class.xlsx) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/class.xlsx) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/class.xlsx NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/class.xlsx, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 40 records were read from the infile library BIGZIP. NOTE: 40 records were read from the infile BIGZIP(data/class.xlsx). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 891.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 100 Switch Count 0 Page Faults 0 Page Reclaims 375 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 24 SYMBOLGEN: Macro variable I resolves to 41 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/class_birthdate.csv"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 41 MPRINT(UNPACK): infile bigzip(data/class_birthdate.csv) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/class_birthdate.csv) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/class_birthdate.csv NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/class_birthdate.csv, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(data/class_birthdate.csv). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 891.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 101 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 1 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 42 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/eu_sport_trade.xlsx"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 42 MPRINT(UNPACK): infile bigzip(data/eu_sport_trade.xlsx) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/eu_sport_trade.xlsx) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/eu_sport_trade.xlsx NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/eu_sport_trade.xlsx, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 915 records were read from the infile library BIGZIP. NOTE: 915 records were read from the infile BIGZIP(data/eu_sport_trade.xlsx). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 891.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 102 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 15 Involuntary Context Switches 0 Block Input Operations 960 Block Output Operations 464 SYMBOLGEN: Macro variable I resolves to 43 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/np_info.xlsx"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 43 MPRINT(UNPACK): infile bigzip(data/np_info.xlsx) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/np_info.xlsx) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/np_info.xlsx NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/np_info.xlsx, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 28260 records were read from the infile library BIGZIP. NOTE: 28260 records were read from the infile BIGZIP(data/np_info.xlsx). NOTE: DATA statement used (Total process time): real time 0.18 seconds user cpu time 0.14 seconds system cpu time 0.02 seconds memory 891.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 103 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 109 Involuntary Context Switches 0 Block Input Operations 13416 Block Output Operations 14144 SYMBOLGEN: Macro variable I resolves to 44 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/np_traffic.csv"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 44 MPRINT(UNPACK): infile bigzip(data/np_traffic.csv) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/np_traffic.csv) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/np_traffic.csv NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/np_traffic.csv, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 1125 records were read from the infile library BIGZIP. NOTE: 1125 records were read from the infile BIGZIP(data/np_traffic.csv). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 891.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 104 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 18 Involuntary Context Switches 4 Block Input Operations 0 Block Output Operations 568 SYMBOLGEN: Macro variable I resolves to 45 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/np_traffic.dat"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 45 MPRINT(UNPACK): infile bigzip(data/np_traffic.dat) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/np_traffic.dat) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/np_traffic.dat NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/np_traffic.dat, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 1125 records were read from the infile library BIGZIP. NOTE: 1125 records were read from the infile BIGZIP(data/np_traffic.dat). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 105 Switch Count 0 Page Faults 0 Page Reclaims 375 Page Swaps 0 Voluntary Context Switches 19 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 576 SYMBOLGEN: Macro variable I resolves to 46 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/readme.txt"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 46 MPRINT(UNPACK): infile bigzip(data/readme.txt) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/readme.txt) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/readme.txt NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/readme.txt, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(data/readme.txt). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 106 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 47 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/storm.xlsx"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 47 MPRINT(UNPACK): infile bigzip(data/storm.xlsx) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/storm.xlsx) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/storm.xlsx NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/storm.xlsx, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 26790 records were read from the infile library BIGZIP. NOTE: 26790 records were read from the infile BIGZIP(data/storm.xlsx). NOTE: DATA statement used (Total process time): real time 0.17 seconds user cpu time 0.14 seconds system cpu time 0.02 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:08 PM Step Count 107 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 115 Involuntary Context Switches 0 Block Input Operations 11392 Block Output Operations 13400 SYMBOLGEN: Macro variable I resolves to 48 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/storm_damage.csv"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 48 MPRINT(UNPACK): infile bigzip(data/storm_damage.csv) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/storm_damage.csv) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/storm_damage.csv NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/storm_damage.csv, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:08 NOTE: A total of 49 records were read from the infile library BIGZIP. NOTE: 49 records were read from the infile BIGZIP(data/storm_damage.csv). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 108 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 32 SYMBOLGEN: Macro variable I resolves to 49 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/storm_damage.tab"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 49 MPRINT(UNPACK): infile bigzip(data/storm_damage.tab) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/storm_damage.tab) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/storm_damage.tab NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/storm_damage.tab, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 50 records were read from the infile library BIGZIP. NOTE: 50 records were read from the infile BIGZIP(data/storm_damage.tab). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 109 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 32 SYMBOLGEN: Macro variable I resolves to 50 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/data/storms2016.json"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 50 MPRINT(UNPACK): infile bigzip(data/storms2016.json) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(data/storms2016.json) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=data/storms2016.json NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/data/storms2016.json, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 34 records were read from the infile library BIGZIP. NOTE: 34 records were read from the infile BIGZIP(data/storms2016.json). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 110 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 10 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 24 SYMBOLGEN: Macro variable I resolves to 51 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/ep101d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 51 MPRINT(UNPACK): infile bigzip(demos/ep101d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/ep101d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/ep101d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/ep101d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 17 records were read from the infile library BIGZIP. NOTE: 17 records were read from the infile BIGZIP(demos/ep101d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 111 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 52 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p101d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 52 MPRINT(UNPACK): infile bigzip(demos/p101d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p101d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p101d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p101d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 18 records were read from the infile library BIGZIP. NOTE: 18 records were read from the infile BIGZIP(demos/p101d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 112 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 24 SYMBOLGEN: Macro variable I resolves to 53 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p101d02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 53 MPRINT(UNPACK): infile bigzip(demos/p101d02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p101d02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p101d02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p101d02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 7 records were read from the infile library BIGZIP. NOTE: 7 records were read from the infile BIGZIP(demos/p101d02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 113 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 54 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p101d03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 54 MPRINT(UNPACK): infile bigzip(demos/p101d03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p101d03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p101d03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p101d03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(demos/p101d03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 114 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 55 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p102d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 55 MPRINT(UNPACK): infile bigzip(demos/p102d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p102d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p102d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p102d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 10 records were read from the infile library BIGZIP. NOTE: 10 records were read from the infile BIGZIP(demos/p102d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 115 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 56 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p102d02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 56 MPRINT(UNPACK): infile bigzip(demos/p102d02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p102d02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p102d02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p102d02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 10 records were read from the infile library BIGZIP. NOTE: 10 records were read from the infile BIGZIP(demos/p102d02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 116 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 57 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p102d03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 57 MPRINT(UNPACK): infile bigzip(demos/p102d03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p102d03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p102d03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p102d03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(demos/p102d03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 117 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 58 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p103d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 58 MPRINT(UNPACK): infile bigzip(demos/p103d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p103d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p103d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p103d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 14 records were read from the infile library BIGZIP. NOTE: 14 records were read from the infile BIGZIP(demos/p103d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 118 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 59 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p103d02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 59 MPRINT(UNPACK): infile bigzip(demos/p103d02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p103d02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p103d02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p103d02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 11 records were read from the infile library BIGZIP. NOTE: 11 records were read from the infile BIGZIP(demos/p103d02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 119 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 60 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p103d03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 60 MPRINT(UNPACK): infile bigzip(demos/p103d03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p103d03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p103d03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p103d03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 10 records were read from the infile library BIGZIP. NOTE: 10 records were read from the infile BIGZIP(demos/p103d03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 120 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 61 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p103d04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 61 MPRINT(UNPACK): infile bigzip(demos/p103d04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p103d04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p103d04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p103d04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(demos/p103d04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 121 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 62 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p103d05.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 62 MPRINT(UNPACK): infile bigzip(demos/p103d05.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p103d05.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p103d05.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p103d05.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 11 records were read from the infile library BIGZIP. NOTE: 11 records were read from the infile BIGZIP(demos/p103d05.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 122 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 63 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p104d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 63 MPRINT(UNPACK): infile bigzip(demos/p104d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p104d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p104d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p104d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(demos/p104d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 123 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 64 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p104d02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 64 MPRINT(UNPACK): infile bigzip(demos/p104d02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p104d02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p104d02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p104d02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 7 records were read from the infile library BIGZIP. NOTE: 7 records were read from the infile BIGZIP(demos/p104d02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 124 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 65 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p104d03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 65 MPRINT(UNPACK): infile bigzip(demos/p104d03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p104d03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p104d03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p104d03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 10 records were read from the infile library BIGZIP. NOTE: 10 records were read from the infile BIGZIP(demos/p104d03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 125 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 66 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p104d04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 66 MPRINT(UNPACK): infile bigzip(demos/p104d04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p104d04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p104d04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p104d04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 7 records were read from the infile library BIGZIP. NOTE: 7 records were read from the infile BIGZIP(demos/p104d04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 126 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 67 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p104d05.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 67 MPRINT(UNPACK): infile bigzip(demos/p104d05.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p104d05.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p104d05.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p104d05.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 7 records were read from the infile library BIGZIP. NOTE: 7 records were read from the infile BIGZIP(demos/p104d05.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 127 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 68 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p104d06.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 68 MPRINT(UNPACK): infile bigzip(demos/p104d06.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p104d06.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p104d06.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p104d06.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(demos/p104d06.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 128 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 69 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p104d07.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 69 MPRINT(UNPACK): infile bigzip(demos/p104d07.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p104d07.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p104d07.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p104d07.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(demos/p104d07.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 129 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 70 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p105d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 70 MPRINT(UNPACK): infile bigzip(demos/p105d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p105d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p105d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p105d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 12 records were read from the infile library BIGZIP. NOTE: 12 records were read from the infile BIGZIP(demos/p105d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 130 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 71 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p105d02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 71 MPRINT(UNPACK): infile bigzip(demos/p105d02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p105d02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p105d02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p105d02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 12 records were read from the infile library BIGZIP. NOTE: 12 records were read from the infile BIGZIP(demos/p105d02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 131 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 72 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p105d03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 72 MPRINT(UNPACK): infile bigzip(demos/p105d03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p105d03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p105d03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p105d03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(demos/p105d03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 132 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 73 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p105d04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 73 MPRINT(UNPACK): infile bigzip(demos/p105d04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p105d04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p105d04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p105d04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(demos/p105d04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 133 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 74 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p106d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 74 MPRINT(UNPACK): infile bigzip(demos/p106d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p106d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p106d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p106d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(demos/p106d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 134 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 75 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p106d02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 75 MPRINT(UNPACK): infile bigzip(demos/p106d02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p106d02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p106d02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p106d02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 13 records were read from the infile library BIGZIP. NOTE: 13 records were read from the infile BIGZIP(demos/p106d02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 135 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 76 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p106d03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 76 MPRINT(UNPACK): infile bigzip(demos/p106d03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p106d03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p106d03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p106d03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 8 records were read from the infile library BIGZIP. NOTE: 8 records were read from the infile BIGZIP(demos/p106d03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 136 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 77 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p107d01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 77 MPRINT(UNPACK): infile bigzip(demos/p107d01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p107d01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p107d01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p107d01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(demos/p107d01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 137 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 78 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/demos/p107d02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 78 MPRINT(UNPACK): infile bigzip(demos/p107d02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(demos/p107d02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=demos/p107d02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/demos/p107d02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 8 records were read from the infile library BIGZIP. NOTE: 8 records were read from the infile BIGZIP(demos/p107d02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 138 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 79 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/output/folder_for_output.txt"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 79 MPRINT(UNPACK): infile bigzip(output/folder_for_output.txt) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(output/folder_for_output.txt) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=output/folder_for_output.txt NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/output/folder_for_output.txt, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 1 record was read from the infile library BIGZIP. NOTE: 1 record was read from the infile BIGZIP(output/folder_for_output.txt). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 139 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 80 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p102p01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 80 MPRINT(UNPACK): infile bigzip(practices/p102p01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p102p01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p102p01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p102p01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(practices/p102p01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 140 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 81 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p103p01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 81 MPRINT(UNPACK): infile bigzip(practices/p103p01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p103p01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p103p01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p103p01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 8 records were read from the infile library BIGZIP. NOTE: 8 records were read from the infile BIGZIP(practices/p103p01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 141 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 82 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p103p04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 82 MPRINT(UNPACK): infile bigzip(practices/p103p04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p103p04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p103p04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p103p04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(practices/p103p04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 142 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 83 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p103p08.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 83 MPRINT(UNPACK): infile bigzip(practices/p103p08.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p103p08.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p103p08.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p103p08.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 3 records were read from the infile library BIGZIP. NOTE: 3 records were read from the infile BIGZIP(practices/p103p08.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 143 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 84 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p104p01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 84 MPRINT(UNPACK): infile bigzip(practices/p104p01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p104p01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p104p01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p104p01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 5 records were read from the infile library BIGZIP. NOTE: 5 records were read from the infile BIGZIP(practices/p104p01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 144 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 85 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p104p04.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 85 MPRINT(UNPACK): infile bigzip(practices/p104p04.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p104p04.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p104p04.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p104p04.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(practices/p104p04.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 145 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 86 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p104p07.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 86 MPRINT(UNPACK): infile bigzip(practices/p104p07.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p104p07.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p104p07.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p104p07.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 4 records were read from the infile library BIGZIP. NOTE: 4 records were read from the infile BIGZIP(practices/p104p07.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 146 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 87 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p105p03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 87 MPRINT(UNPACK): infile bigzip(practices/p105p03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p105p03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p105p03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p105p03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 10 records were read from the infile library BIGZIP. NOTE: 10 records were read from the infile BIGZIP(practices/p105p03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 147 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 88 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p106p01.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 88 MPRINT(UNPACK): infile bigzip(practices/p106p01.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p106p01.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p106p01.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p106p01.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 6 records were read from the infile library BIGZIP. NOTE: 6 records were read from the infile BIGZIP(practices/p106p01.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 148 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 89 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p106p02.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 89 MPRINT(UNPACK): infile bigzip(practices/p106p02.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p106p02.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p106p02.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p106p02.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 9 records were read from the infile library BIGZIP. NOTE: 9 records were read from the infile BIGZIP(practices/p106p02.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 149 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 SYMBOLGEN: Macro variable I resolves to 90 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/practices/p106p03.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 90 MPRINT(UNPACK): infile bigzip(practices/p106p03.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(practices/p106p03.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=practices/p106p03.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/practices/p106p03.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 7 records were read from the infile library BIGZIP. NOTE: 7 records were read from the infile BIGZIP(practices/p106p03.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 150 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 SYMBOLGEN: Macro variable I resolves to 91 MPRINT(UNPACK): filename out "/home/u50121382/EPG194/setup.sas"; MPRINT(UNPACK): data _null_; SYMBOLGEN: Macro variable I resolves to 91 MPRINT(UNPACK): infile bigzip(setup.sas) lrecl=256 recfm=F length=length eof=eof unbuf; MPRINT(UNPACK): file out lrecl=256 recfm=N; MPRINT(UNPACK): input; MPRINT(UNPACK): put _infile_ $varying256. length; MPRINT(UNPACK): return; MPRINT(UNPACK): eof: stop; MPRINT(UNPACK): run; NOTE: The infile library BIGZIP is: Directory=/home/u50121382/EPG194/epg194.zip NOTE: The infile BIGZIP(setup.sas) is: Filename=/home/u50121382/EPG194/epg194.zip, Member Name=setup.sas NOTE: UNBUFFERED is the default with RECFM=N. NOTE: The file OUT is: Filename=/home/u50121382/EPG194/setup.sas, Owner Name=u50121382,Group Name=oda, Access Permission=-rw-r--r--, Last Modified=11May2021:13:29:09 NOTE: A total of 2 records were read from the infile library BIGZIP. NOTE: 2 records were read from the infile BIGZIP(setup.sas). NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 947.37k OS Memory 30372.00k Timestamp 05/11/2021 12:29:09 PM Step Count 151 Switch Count 0 Page Faults 0 Page Reclaims 374 Page Swaps 0 Voluntary Context Switches 11 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 MPRINT(UNPACK): filename bigzip; NOTE: Fileref BIGZIP has been deassigned. MPRINT(UNPACK): filename out; NOTE: Fileref OUT has been deassigned. MPRINT(UNPACK): filename unzip; NOTE: Fileref UNZIP has been deassigned. SYMBOLGEN: Macro variable CRE8DATA_READY resolves to 1 SYMBOLGEN: Macro variable PATH resolves to /home/u50121382/EPG194/data SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MPRINT(UNPACK): libname PG1 "/home/u50121382/EPG194/data"; NOTE: Libref PG1 was successfully assigned as follows: Engine: V9 Physical Name: /home/u50121382/EPG194/data SYMBOLGEN: Macro variable PATH resolves to /home/u50121382/EPG194/data SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MPRINT(UNPACK): options linesize=256; MPRINT(UNPACK): data PG1.CLASS_BIRTHDATE; MPRINT(UNPACK): attrib Name length=$8; MPRINT(UNPACK): attrib Sex length=$1; MPRINT(UNPACK): attrib Age length=8; MPRINT(UNPACK): attrib Height length=8; MPRINT(UNPACK): attrib Weight length=8; MPRINT(UNPACK): attrib Birthdate length=8; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Name Sex Age Height Weight Birthdate ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.CLASS_BIRTHDATE has 19 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 913.00k OS Memory 30632.00k Timestamp 05/11/2021 12:29:09 PM Step Count 152 Switch Count 1 Page Faults 0 Page Reclaims 97 Page Swaps 0 Voluntary Context Switches 32 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.CLASS_TEACHERS; MPRINT(UNPACK): attrib Name length=$8; MPRINT(UNPACK): attrib Grade length=8; MPRINT(UNPACK): attrib Teacher length=$12; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Name Grade Teacher ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.CLASS_TEACHERS has 19 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 800.00k OS Memory 30888.00k Timestamp 05/11/2021 12:29:09 PM Step Count 153 Switch Count 1 Page Faults 0 Page Reclaims 90 Page Swaps 0 Voluntary Context Switches 34 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 272 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.CLASS_TEST2; MPRINT(UNPACK): attrib Name length=$7; MPRINT(UNPACK): attrib Subject length=$7; MPRINT(UNPACK): attrib TestScore length=8; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Name Subject TestScore ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.CLASS_TEST2 has 38 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 912.12k OS Memory 30888.00k Timestamp 05/11/2021 12:29:09 PM Step Count 154 Switch Count 1 Page Faults 0 Page Reclaims 88 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 272 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.CLASS_TEST3; MPRINT(UNPACK): attrib Name length=$7; MPRINT(UNPACK): attrib Subject length=$7; MPRINT(UNPACK): attrib TestScore length=8; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Name Subject TestScore ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.CLASS_TEST3 has 40 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 799.87k OS Memory 30888.00k Timestamp 05/11/2021 12:29:09 PM Step Count 155 Switch Count 1 Page Faults 0 Page Reclaims 88 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.CLASS_UPDATE; MPRINT(UNPACK): attrib Name length=$8; MPRINT(UNPACK): attrib Sex length=$1; MPRINT(UNPACK): attrib Age length=8; MPRINT(UNPACK): attrib Height length=8; MPRINT(UNPACK): attrib Weight length=8; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Name Sex Age Height Weight ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.CLASS_UPDATE has 19 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 913.12k OS Memory 30888.00k Timestamp 05/11/2021 12:29:09 PM Step Count 156 Switch Count 1 Page Faults 0 Page Reclaims 89 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.EU_OCC; MPRINT(UNPACK): attrib Geo length=$2 label='Country Code'; MPRINT(UNPACK): attrib Country length=$40 label='Reporting Country'; MPRINT(UNPACK): attrib YearMon length=$8 label='Year Month'; MPRINT(UNPACK): attrib Hotel length=8 label='Nights Spent at Hotels'; MPRINT(UNPACK): attrib ShortStay length=8 label='Nights Spent at Short Stay Accommodations'; MPRINT(UNPACK): attrib Camp length=8 label='Nights Spent at Camp Grounds or RV Parks'; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Geo Country YearMon Hotel ShortStay Camp ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.EU_OCC has 4785 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 1168.62k OS Memory 31144.00k Timestamp 05/11/2021 12:29:09 PM Step Count 157 Switch Count 1 Page Faults 0 Page Reclaims 123 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 784 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_CODELOOKUP; MPRINT(UNPACK): attrib Name_Code length=$115; MPRINT(UNPACK): attrib ParkName length=$115; MPRINT(UNPACK): attrib ParkCode length=$4; MPRINT(UNPACK): attrib Region length=$17 format=$CHAR17. informat=$CHAR17.; MPRINT(UNPACK): attrib Type length=$28 format=$CHAR28. informat=$CHAR28.; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Name_Code ParkName ParkCode Region:$17. Type:$28. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.NP_CODELOOKUP has 713 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 1028.53k OS Memory 31144.00k Timestamp 05/11/2021 12:29:09 PM Step Count 158 Switch Count 1 Page Faults 0 Page Reclaims 61 Page Swaps 0 Voluntary Context Switches 34 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 520 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_FINAL; MPRINT(UNPACK): attrib Region length=$16; MPRINT(UNPACK): attrib Type length=$29; MPRINT(UNPACK): attrib ParkName length=$115; MPRINT(UNPACK): attrib DayVisits length=8 label='Recreational Day Visitors' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib Campers length=8; MPRINT(UNPACK): attrib OtherLodging length=8 label='Concessioner Lodging' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib Acres length=8 label='Gross Acres' format=COMMA12.2 informat=COMMA12.; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Region Type ParkName DayVisits:BEST32. Campers OtherLodging:BEST32. Acres:BEST32. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.NP_FINAL has 135 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 802.00k OS Memory 31144.00k Timestamp 05/11/2021 12:29:09 PM Step Count 159 Switch Count 1 Page Faults 0 Page Reclaims 103 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_LARGEPARKS; MPRINT(UNPACK): attrib UnitCode length=$4 format=$CHAR4. informat=$CHAR4.; MPRINT(UNPACK): attrib AreaName length=$27 format=$CHAR27. informat=$CHAR27.; MPRINT(UNPACK): attrib State length=$8 format=$CHAR8. informat=$CHAR8.; MPRINT(UNPACK): attrib Reg length=$2 format=$CHAR2. informat=$CHAR2.; MPRINT(UNPACK): attrib GrossAcres length=8 format=F12.2 informat=BEST12.; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input UnitCode:$4. AreaName:$27. State:$8. Reg:$2. GrossAcres:BEST32. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.NP_LARGEPARKS has 153 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 803.81k OS Memory 31144.00k Timestamp 05/11/2021 12:29:09 PM Step Count 160 Switch Count 1 Page Faults 0 Page Reclaims 86 Page Swaps 0 Voluntary Context Switches 35 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 272 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_MULTIYR; MPRINT(UNPACK): attrib Region length=$17 format=$CHAR17. informat=$CHAR17.; MPRINT(UNPACK): attrib Type length=$28 format=$CHAR28. informat=$CHAR28.; MPRINT(UNPACK): attrib UnitCode length=$4 format=$CHAR4. informat=$CHAR4.; MPRINT(UNPACK): attrib ParkName length=$115; MPRINT(UNPACK): attrib State length=$2 format=$CHAR2. informat=$CHAR2.; MPRINT(UNPACK): attrib Year length=8 format=BEST12. informat=BEST12.; MPRINT(UNPACK): attrib Month length=8 format=BEST12. informat=BEST12.; MPRINT(UNPACK): attrib Visitors length=8 format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib Camping length=8 format=COMMA12.; MPRINT(UNPACK): attrib OtherLodging length=8 label='Concessioner Lodging' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib OtherCamping length=8 label='Concessioner Camping' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Region:$17. Type:$28. UnitCode:$4. ParkName State:$2. Year:BEST32. Month:BEST32. Visitors:BEST32. Camping OtherLodging:BEST32. OtherCamping:BEST32. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.NP_MULTIYR has 30652 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.07 seconds user cpu time 0.04 seconds system cpu time 0.02 seconds memory 2076.46k OS Memory 32936.00k Timestamp 05/11/2021 12:29:09 PM Step Count 161 Switch Count 1 Page Faults 0 Page Reclaims 305 Page Swaps 0 Voluntary Context Switches 143 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 13064 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_WESTWEATHER; MPRINT(UNPACK): attrib STATION length=$11 format=$CHAR11. informat=$CHAR11.; MPRINT(UNPACK): attrib NAME length=$46 format=$CHAR46. informat=$CHAR46.; MPRINT(UNPACK): attrib UNITCODE length=$46 label='UNITCODE' format=$4.; MPRINT(UNPACK): attrib Year length=8; MPRINT(UNPACK): attrib Month length=8; MPRINT(UNPACK): attrib DATE length=8 format=YYMMDD10. informat=YYMMDD10.; MPRINT(UNPACK): attrib EVAP length=8 format=BEST4. informat=BEST4.; MPRINT(UNPACK): attrib EVAPMIN length=8 format=BEST2. informat=BEST2.; MPRINT(UNPACK): attrib EVAPMAX length=8 format=BEST3. informat=BEST3.; MPRINT(UNPACK): attrib PRECIP length=8 format=BEST4. informat=BEST4.; MPRINT(UNPACK): attrib SNOW length=8 format=BEST4. informat=BEST4.; MPRINT(UNPACK): attrib SNOWDEPTH length=8 format=BEST2. informat=BEST2.; MPRINT(UNPACK): attrib TEMPMAX length=8 format=BEST3. informat=BEST3.; MPRINT(UNPACK): attrib TEMPMIN length=8 format=BEST3. informat=BEST3.; MPRINT(UNPACK): attrib FOG length=8 format=BEST5. informat=BEST5.; MPRINT(UNPACK): attrib THUNDER length=8 format=BEST5. informat=BEST5.; MPRINT(UNPACK): attrib ICE length=8 format=BEST5. informat=BEST5.; MPRINT(UNPACK): attrib HAIL length=8 format=BEST5. informat=BEST5.; MPRINT(UNPACK): attrib RIME length=8 format=BEST5. informat=BEST5.; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input STATION:$11. NAME:$46. UNITCODE Year Month DATE:BEST32. EVAP:BEST32. EVAPMIN:BEST32. EVAPMAX:BEST32. PRECIP:BEST32. SNOW:BEST32. SNOWDEPTH:BEST32. TEMPMAX:BEST32. TEMPMIN:BEST32. FOG:BEST32. THUNDER:BEST32. ICE:BEST32. HAIL:BEST32. RIME:BEST32. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.NP_WESTWEATHER has 4355 observations and 19 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 1797.71k OS Memory 32424.00k Timestamp 05/11/2021 12:29:09 PM Step Count 162 Switch Count 1 Page Faults 0 Page Reclaims 68 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 1 Block Input Operations 32 Block Output Operations 2064 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_SUMMARY; MPRINT(UNPACK): attrib Reg length=$5 label='Region Code' format=$CHAR5. informat=$CHAR5.; MPRINT(UNPACK): attrib Type length=$29; MPRINT(UNPACK): attrib ParkName length=$115; MPRINT(UNPACK): attrib DayVisits length=8 label='Recreational Day Visitors' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib OtherLodging length=8 label='Concessioner Lodging' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib OtherCamping length=8 label='Concessioner Camping' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib TentCampers length=8 label='Tent Campers' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib RVCampers length=8 label='RV Campers' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib BackcountryCampers length=8 label='Backcountry Campers' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib Acres length=8 label='Gross Acres' format=COMMA12.2 informat=COMMA12.; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Reg:$5. Type ParkName DayVisits:BEST32. OtherLodging:BEST32. OtherCamping:BEST32. TentCampers:BEST32. RVCampers:BEST32. BackcountryCampers:BEST32. Acres:BEST32. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.NP_SUMMARY has 135 observations and 10 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 813.03k OS Memory 32424.00k Timestamp 05/11/2021 12:29:09 PM Step Count 163 Switch Count 1 Page Faults 0 Page Reclaims 81 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_TRAFFIC; MPRINT(UNPACK): attrib RegCode length=$3 label='Region Code' format=$CHAR3. informat=$CHAR3.; MPRINT(UNPACK): attrib ParkName length=$115 label='Park Name'; MPRINT(UNPACK): attrib ParkCode length=$4 label='Park Code' format=$CHAR4. informat=$CHAR4.; MPRINT(UNPACK): attrib Location length=$77 label='Traffic Count Location' format=$CHAR77. informat=$CHAR77.; MPRINT(UNPACK): attrib Count length=8 label='Traffic Count' format=COMMA12. informat=COMMA12.; MPRINT(UNPACK): attrib TypeCode length=$29; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input RegCode:$3. ParkName ParkCode:$4. Location:$77. Count:BEST32. TypeCode ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.NP_TRAFFIC has 1008 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 923.25k OS Memory 32424.00k Timestamp 05/11/2021 12:29:09 PM Step Count 164 Switch Count 1 Page Faults 0 Page Reclaims 61 Page Swaps 0 Voluntary Context Switches 36 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 528 MPRINT(UNPACK): run; MPRINT(UNPACK): data work.species1; MPRINT(UNPACK): attrib Species_ID length=$9 format=$CHAR9. informat=$CHAR9.; MPRINT(UNPACK): attrib Category length=$19 format=$CHAR19. informat=$CHAR19.; MPRINT(UNPACK): attrib Family length=$20 format=$CHAR20. informat=$CHAR20.; MPRINT(UNPACK): attrib Scientific_Name length=$69 format=$CHAR69. informat=$CHAR69.; MPRINT(UNPACK): attrib Common_Names length=$218 format=$CHAR218. informat=$CHAR218.; MPRINT(UNPACK): attrib Record_Status length=$9 format=$CHAR9. informat=$CHAR9.; MPRINT(UNPACK): attrib Occurrence length=$31 format=$CHAR31. informat=$CHAR31.; MPRINT(UNPACK): attrib Nativeness length=$10 format=$CHAR10. informat=$CHAR10.; MPRINT(UNPACK): attrib Abundance length=$10 format=$CHAR10. informat=$CHAR10.; MPRINT(UNPACK): attrib Seasonality length=$36 format=$CHAR36. informat=$CHAR36.; MPRINT(UNPACK): attrib Conservation_Status length=$19 format=$CHAR19. informat=$CHAR19.; MPRINT(UNPACK): infile datalines dsd missover; MPRINT(UNPACK): input Species_ID:$9. Category:$19. Family:$20. Scientific_Name:$69. Common_Names:$218. Record_Status:$9. Occurrence:$31. Nativeness:$10. Abundance:$10. Seasonality:$36. Conservation_Status:$19. ; MPRINT(UNPACK): datalines4; NOTE: The data set WORK.SPECIES1 has 55959 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.11 seconds user cpu time 0.10 seconds system cpu time 0.01 seconds memory 2195.93k OS Memory 32936.00k Timestamp 05/11/2021 12:29:10 PM Step Count 165 Switch Count 2 Page Faults 0 Page Reclaims 129 Page Swaps 0 Voluntary Context Switches 12 Involuntary Context Switches 1 Block Input Operations 0 Block Output Operations 49416 MPRINT(UNPACK): run; SYMBOLGEN: Macro variable PATH resolves to /home/u50121382/EPG194/data SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MPRINT(UNPACK): options linesize=256; MPRINT(UNPACK): data work.species2; MPRINT(UNPACK): attrib Species_ID length=$9 format=$CHAR9. informat=$CHAR9.; MPRINT(UNPACK): attrib Category length=$19 format=$CHAR19. informat=$CHAR19.; MPRINT(UNPACK): attrib Family length=$20 format=$CHAR20. informat=$CHAR20.; MPRINT(UNPACK): attrib Scientific_Name length=$69 format=$CHAR69. informat=$CHAR69.; MPRINT(UNPACK): attrib Common_Names length=$218 format=$CHAR218. informat=$CHAR218.; MPRINT(UNPACK): attrib Record_Status length=$9 format=$CHAR9. informat=$CHAR9.; MPRINT(UNPACK): attrib Occurrence length=$31 format=$CHAR31. informat=$CHAR31.; MPRINT(UNPACK): attrib Nativeness length=$10 format=$CHAR10. informat=$CHAR10.; MPRINT(UNPACK): attrib Abundance length=$10 format=$CHAR10. informat=$CHAR10.; MPRINT(UNPACK): attrib Seasonality length=$36 format=$CHAR36. informat=$CHAR36.; MPRINT(UNPACK): attrib Conservation_Status length=$19 format=$CHAR19. informat=$CHAR19.; MPRINT(UNPACK): infile datalines dsd missover; MPRINT(UNPACK): input Species_ID:$9. Category:$19. Family:$20. Scientific_Name:$69. Common_Names:$218. Record_Status:$9. Occurrence:$31. Nativeness:$10. Abundance:$10. Seasonality:$36. Conservation_Status:$19. ; MPRINT(UNPACK): datalines4; NOTE: The data set WORK.SPECIES2 has 63300 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.13 seconds user cpu time 0.12 seconds system cpu time 0.02 seconds memory 2190.71k OS Memory 32936.00k Timestamp 05/11/2021 12:29:10 PM Step Count 166 Switch Count 2 Page Faults 0 Page Reclaims 128 Page Swaps 0 Voluntary Context Switches 12 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 55824 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.NP_SPECIES; MPRINT(UNPACK): set work.species1 work.species2; MPRINT(UNPACK): run; NOTE: There were 55959 observations read from the data set WORK.SPECIES1. NOTE: There were 63300 observations read from the data set WORK.SPECIES2. NOTE: The data set PG1.NP_SPECIES has 119259 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.19 seconds user cpu time 0.02 seconds system cpu time 0.07 seconds memory 5368.25k OS Memory 37040.00k Timestamp 05/11/2021 12:29:10 PM Step Count 167 Switch Count 4 Page Faults 0 Page Reclaims 881 Page Swaps 0 Voluntary Context Switches 795 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 104968 SYMBOLGEN: Macro variable PATH resolves to /home/u50121382/EPG194/data SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MPRINT(UNPACK): options linesize=256; MPRINT(UNPACK): data PG1.STORM_2017; MPRINT(UNPACK): attrib Year length=8 format=BEST12. informat=BEST12.; MPRINT(UNPACK): attrib Basin length=$2 format=$CHAR2. informat=$CHAR2.; MPRINT(UNPACK): attrib Name length=$8 format=$CHAR8. informat=$CHAR8.; MPRINT(UNPACK): attrib StartDate length=8 format=DATE9. informat=DATE9.; MPRINT(UNPACK): attrib EndDate length=8 format=DATE9. informat=DATE9.; MPRINT(UNPACK): attrib MaxWindMPH length=8 format=BEST12. informat=BEST12.; MPRINT(UNPACK): attrib MinPressure length=8 format=BEST12. informat=BEST12.; MPRINT(UNPACK): attrib Location length=$238 format=$CHAR238. informat=$CHAR238.; MPRINT(UNPACK): infile datalines dsd missover ; MPRINT(UNPACK): input Year:BEST32. Basin:$2. Name:$8. StartDate:BEST32. EndDate:BEST32. MaxWindMPH:BEST32. MinPressure:BEST32. Location:$238. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.STORM_2017 has 54 observations and 8 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 919.65k OS Memory 32424.00k Timestamp 05/11/2021 12:29:10 PM Step Count 168 Switch Count 1 Page Faults 0 Page Reclaims 88 Page Swaps 0 Voluntary Context Switches 32 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 272 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.STORM_DAMAGE; MPRINT(UNPACK): attrib Event length=$22; MPRINT(UNPACK): attrib Date length=8; MPRINT(UNPACK): attrib Summary length=$762; MPRINT(UNPACK): attrib Cost length=8; MPRINT(UNPACK): attrib Deaths length=8; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Event Date Summary Cost Deaths ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.STORM_DAMAGE has 38 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 804.53k OS Memory 32424.00k Timestamp 05/11/2021 12:29:10 PM Step Count 169 Switch Count 1 Page Faults 0 Page Reclaims 81 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): run; MPRINT(UNPACK): data PG1.STORM_BASINCODES; MPRINT(UNPACK): attrib Basin length=$2 format=$CHAR2. informat=$CHAR2.; MPRINT(UNPACK): attrib BasinName length=$14 format=$CHAR14. informat=$CHAR14.; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Basin:$2. BasinName:$14. ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.STORM_BASINCODES has 6 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 685.40k OS Memory 32424.00k Timestamp 05/11/2021 12:29:10 PM Step Count 170 Switch Count 1 Page Faults 0 Page Reclaims 88 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): run; MPRINT(UNPACK): DATA PG1.STORM_RANGE; MPRINT(UNPACK): attrib Season length=8 format=BEST4. informat=BEST4. ; MPRINT(UNPACK): attrib Basin length=$2 format=$CHAR2. informat=$CHAR2. ; MPRINT(UNPACK): attrib Name length=$57 format=$CHAR57. informat=$CHAR57. ; MPRINT(UNPACK): attrib Wind1 length=8 format=BEST3. ; MPRINT(UNPACK): attrib Wind2 length=8 format=BEST3. ; MPRINT(UNPACK): attrib Wind3 length=8 format=BEST3. ; MPRINT(UNPACK): attrib Wind4 length=8 format=BEST3. ; MPRINT(UNPACK): INFILE DATALINES DSD; MPRINT(UNPACK): INPUT Season Basin Name Wind1 Wind2 Wind3 Wind4 ; MPRINT(UNPACK): DATALINES4; NOTE: The data set PG1.STORM_RANGE has 2959 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 1059.21k OS Memory 32424.00k Timestamp 05/11/2021 12:29:10 PM Step Count 171 Switch Count 1 Page Faults 0 Page Reclaims 58 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 784 MPRINT(UNPACK): RUN; MPRINT(UNPACK): DATA PG1.STORM_FINAL; MPRINT(UNPACK): attrib Season length=8 format=BEST4. informat=BEST4. ; MPRINT(UNPACK): attrib Name length=$57 format=$CHAR57. informat=$CHAR57. ; MPRINT(UNPACK): attrib Basin length=$2 format=$CHAR2. informat=$CHAR2. ; MPRINT(UNPACK): attrib BasinName length=$14; MPRINT(UNPACK): attrib OceanCode length=$2; MPRINT(UNPACK): attrib Ocean length=$8; MPRINT(UNPACK): attrib StormType length=$13; MPRINT(UNPACK): attrib MaxWindMPH length=8 format=BEST12. informat=BEST12. ; MPRINT(UNPACK): attrib MaxWindKM length=8 format=3. ; MPRINT(UNPACK): attrib MinPressure length=8 format=BEST12. informat=BEST12. ; MPRINT(UNPACK): attrib StartDate length=8 format=DATE9.; MPRINT(UNPACK): attrib EndDate length=8 format=DATE9. ; MPRINT(UNPACK): attrib StormLength length=8; MPRINT(UNPACK): attrib Lat length=8; MPRINT(UNPACK): attrib Lon length=8; MPRINT(UNPACK): INFILE DATALINES DSD; MPRINT(UNPACK): INPUT Season Name Basin BasinName OceanCode Ocean StormType MaxWindMPH MaxWindKM MinPressure StartDate EndDate StormLength Lat Lon ; MPRINT(UNPACK): DATALINES4; NOTE: The data set PG1.STORM_FINAL has 3092 observations and 15 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 1322.90k OS Memory 32424.00k Timestamp 05/11/2021 12:29:10 PM Step Count 172 Switch Count 1 Page Faults 0 Page Reclaims 58 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 1032 MPRINT(UNPACK): RUN; MPRINT(UNPACK): DATA PG1.STORM_SUMMARY; MPRINT(UNPACK): attrib Season length=8; MPRINT(UNPACK): attrib Name length=$57; MPRINT(UNPACK): attrib Basin length=$2; MPRINT(UNPACK): attrib Type length=$2; MPRINT(UNPACK): attrib MaxWindMPH length=8; MPRINT(UNPACK): attrib MinPressure length=8; MPRINT(UNPACK): attrib StartDate length=8 format=DATE9. ; MPRINT(UNPACK): attrib EndDate length=8 format=DATE9. ; MPRINT(UNPACK): attrib Hem_NS length=$1; MPRINT(UNPACK): attrib Hem_EW length=$1; MPRINT(UNPACK): attrib Lat length=8; MPRINT(UNPACK): attrib Lon length=8; MPRINT(UNPACK): INFILE DATALINES DSD; MPRINT(UNPACK): INPUT Season Name Basin Type MaxWindMPH MinPressure StartDate EndDate Hem_NS Hem_EW Lat Lon ; MPRINT(UNPACK): DATALINES4; NOTE: The data set PG1.STORM_SUMMARY has 3118 observations and 12 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 1057.21k OS Memory 32424.00k Timestamp 05/11/2021 12:29:10 PM Step Count 173 Switch Count 1 Page Faults 0 Page Reclaims 58 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 776 MPRINT(UNPACK): RUN; MPRINT(UNPACK): proc sort data=pg1.storm_summary; MPRINT(UNPACK): by Season Name; MPRINT(UNPACK): run; NOTE: There were 3118 observations read from the data set PG1.STORM_SUMMARY. NOTE: The data set PG1.STORM_SUMMARY has 3118 observations and 12 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.02 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 2359.87k OS Memory 33848.00k Timestamp 05/11/2021 12:29:10 PM Step Count 174 Switch Count 1 Page Faults 0 Page Reclaims 380 Page Swaps 0 Voluntary Context Switches 46 Involuntary Context Switches 0 Block Input Operations 800 Block Output Operations 776 MPRINT(UNPACK): DATA PG1.STORM_SUBBASINCODES; MPRINT(UNPACK): attrib Sub_Basin length=$2 format=$CHAR2. informat=$CHAR2. ; MPRINT(UNPACK): attrib SubBasin_Name length=$17 format=$CHAR17. informat=$CHAR17. ; MPRINT(UNPACK): INFILE DATALINES DSD; MPRINT(UNPACK): INPUT Sub_Basin SubBasin_Name ; MPRINT(UNPACK): DATALINES4; NOTE: The data set PG1.STORM_SUBBASINCODES has 8 observations and 2 variables. NOTE: DATA statement used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 685.40k OS Memory 32424.00k Timestamp 05/11/2021 12:29:10 PM Step Count 175 Switch Count 1 Page Faults 0 Page Reclaims 88 Page Swaps 0 Voluntary Context Switches 33 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 264 MPRINT(UNPACK): RUN; MPRINT(UNPACK): options linesize=256; MPRINT(UNPACK): data PG1.STORM_DETAIL; MPRINT(UNPACK): attrib Season length=8 format=BEST4. informat=BEST4.; MPRINT(UNPACK): attrib Basin length=$2 format=$CHAR2. informat=$CHAR2.; MPRINT(UNPACK): attrib Sub_basin length=$2 format=$CHAR2. informat=$CHAR2.; MPRINT(UNPACK): attrib Name length=$57 format=$CHAR57. informat=$CHAR57.; MPRINT(UNPACK): attrib ISO_time length=8 format=DATETIME21.2 informat=DATETIME21.; MPRINT(UNPACK): attrib Type length=$2 format=$CHAR2. informat=$CHAR2.; MPRINT(UNPACK): attrib Latitude length=8 format=BEST6. informat=BEST6.; MPRINT(UNPACK): attrib Longitude length=8 format=BEST7. informat=BEST7.; MPRINT(UNPACK): attrib Wind length=8 label='Wind(MPH)' format=BEST3. informat=BEST3.; MPRINT(UNPACK): attrib Pressure length=8 label='Pres(WMO)' format=BEST5. informat=BEST5.; MPRINT(UNPACK): attrib Hem_NS length=$1; MPRINT(UNPACK): attrib Hem_EW length=$1; MPRINT(UNPACK): attrib Region length=$24; MPRINT(UNPACK): infile datalines dsd; MPRINT(UNPACK): input Season:BEST32. Basin:$2. Sub_basin:$2. Name:$57. ISO_time:BEST32. Type:$2. Latitude:BEST32. Longitude:BEST32. Wind:BEST32. Pressure:BEST32. Hem_NS Hem_EW Region ; MPRINT(UNPACK): datalines4; NOTE: The data set PG1.STORM_DETAIL has 108035 observations and 13 variables. NOTE: DATA statement used (Total process time): real time 0.20 seconds user cpu time 0.15 seconds system cpu time 0.01 seconds memory 2193.25k OS Memory 32936.00k Timestamp 05/11/2021 12:29:10 PM Step Count 176 Switch Count 1 Page Faults 0 Page Reclaims 136 Page Swaps 0 Voluntary Context Switches 247 Involuntary Context Switches 0 Block Input Operations 32 Block Output Operations 30472 MPRINT(UNPACK): run; MPRINT(UNPACK): proc contents data=pg1._all_ nods; MPRINT(UNPACK): run; NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.06 seconds user cpu time 0.06 seconds system cpu time 0.00 seconds memory 3059.46k OS Memory 34216.00k Timestamp 05/11/2021 12:29:10 PM Step Count 177 Switch Count 0 Page Faults 0 Page Reclaims 848 Page Swaps 0 Voluntary Context Switches 4 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 16 279548 279549 /* added to set &path for elearning */ 279550 %let path=/home/&sysuserid/EPG194/data; SYMBOLGEN: Macro variable SYSUSERID resolves to u50121382 279551 279552 options mprint notes source; 279553 279554 279555 OPTIONS NOSYNTAXCHECK; 279556 ODS HTML CLOSE; SYMBOLGEN: Macro variable GRAPHTERM resolves to GOPTIONS NOACCESSIBLE; 279557 &GRAPHTERM; ;*';*";*/;RUN;QUIT; 279558 QUIT;RUN; 279559 ODS HTML5 (ID=WEB) CLOSE; 279560 279561 ODS RTF (ID=WEB) CLOSE; 279562 ODS PDF (ID=WEB) CLOSE; NOTE: ODS PDF(WEB) printed 1 page to /saswork/SAS_workCA000001F528_odaws02-euw1.oda.sas.com/#LN00163. 279563 FILENAME _GSFNAME; NOTE: Fileref _GSFNAME has been deassigned. 279564 DATA _NULL_; 279565 RUN; NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 479.40k OS Memory 26792.00k Timestamp 05/11/2021 12:29:10 PM Step Count 178 Switch Count 0 Page Faults 0 Page Reclaims 24 Page Swaps 0 Voluntary Context Switches 1 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 279566 OPTIONS NOTES STIMER SOURCE SYNTAXCHECK; 279567
Its okay, its all fixed now. There was another step called sas setup that i wasn't using.
Its all working correctly now
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Follow along as SAS technical trainer Dominique Weatherspoon expertly answers all your questions about SAS Libraries.
Find more tutorials on the SAS Users YouTube channel.