1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; SYMBOLGEN: Macro variable _SASWSTEMP_ resolves to /home/deepankeranand0/.images/85deb555-27a8-4e11-8084-86e1f4b4b94d SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable GRAPHINIT resolves to GOPTIONS RESET=ALL GSFNAME=_GSFNAME; 55 56 ERROR: Shell escape is not valid in this SAS session. 57 58 59 /*1. Import Directory Usage*/ 60 61 x du -k /home/deepankeranand0/DSP project > /home/deepankeranand0/DSP project/dirusage.log 61 ! ; 62 63 DATA WORK.dirusage; 64 LENGTH 65 size_kb 8 66 path $ 512 ; 67 LABEL 68 size_kb = "path size in kb" 69 path = "path on disc" ; 70 FORMAT 71 size_kb BEST9. 72 path $CHAR96. ; 73 INFORMAT 74 size_kb BEST9. 75 path $CHAR96. ; 76 INFILE '/sas/data/ad-hoc2/fut_anal/TOOLS/sas_disc_usage/dirusage.log' 77 DLM='09'x 78 MISSOVER 79 DSD ; 80 INPUT 81 size_kb : ?? BEST9. 82 path : $CHAR96. ; 83 RUN; ERROR: Physical file does not exist, /sas/data/ad-hoc2/fut_anal/TOOLS/sas_disc_usage/dirusage.log. NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.DIRUSAGE may be incomplete. When this step was stopped there were 0 observations and 2 variables. WARNING: Data set WORK.DIRUSAGE was not replaced because this step was stopped. 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 784.21k OS Memory 29348.00k Timestamp 26/09/2016 03:09:21 AM Step Count 71 Switch Count 106 Page Faults 0 Page Reclaims 359 Page Swaps 0 Voluntary Context Switches 371 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8 ERROR: Shell escape is not valid in this SAS session. 84 85 /*2. Import File Usage*/ 86 x du -ak /home/deepankeranand0/DSP project > /home/deepankeranand0/DSP project/fileusage.log 86 ! ; 87 88 DATA WORK.fileusage; 89 LENGTH 90 size_kb 8 91 path $ 512 ; 92 LABEL 93 size_kb = "path size in kb" 94 path = "path on disc" ; 95 FORMAT 96 size_kb BEST9. 97 path $CHAR96. ; 98 INFORMAT 99 size_kb BEST9. 100 path $CHAR96. ; 101 INFILE '/home/deepankeranand0/DSP project/fileusage.log' 102 DLM='09'x 103 MISSOVER 104 DSD ; 105 INPUT 106 size_kb : ?? BEST9. 107 path : $CHAR96. ; 108 RUN; ERROR: Physical file does not exist, /home/deepankeranand0/DSP project/fileusage.log. NOTE: The SAS System stopped processing this step because of errors. WARNING: The data set WORK.FILEUSAGE may be incomplete. When this step was stopped there were 0 observations and 2 variables. 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 784.21k OS Memory 29348.00k Timestamp 26/09/2016 03:09:21 AM Step Count 72 Switch Count 106 Page Faults 0 Page Reclaims 270 Page Swaps 0 Voluntary Context Switches 375 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 520 109 110 /*3. DIRECTORITIES BY PATH*/ 111 112 PROC SQL; 113 CREATE VIEW WORK.DirSize_ByPath AS 114 SELECT size_kb, 115 (size_kb / 1024) as size_mb, 116 (size_kb / (1024*1024)) as size_gb, 117 path 118 FROM WORK.DIRUSAGE 119 ORDER BY path ASC 120 ; NOTE: SQL view WORK.DIRSIZE_BYPATH has been defined. 121 QUIT; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 310.43k OS Memory 29348.00k Timestamp 26/09/2016 03:09:21 AM Step Count 73 Switch Count 60 Page Faults 0 Page Reclaims 56 Page Swaps 0 Voluntary Context Switches 186 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 264 122 TITLE; 123 TITLE1 "Size of Directories on Disc"; 124 FOOTNOTE; WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable SYSSCPL resolves to Linux WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. 125 FOOTNOTE1 "Generated by the SAS System (&_SASSERVERNAME, &SYSSCPL) on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at 125 ! %TRIM(%SYSFUNC(TIME(), NLTIMAP20.))"; MLOGIC: Beginning compilation of TRIM using the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas. MLOGIC: Ending compilation of TRIM. WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas MLOGIC(TRIM): Parameter VALUE has value 26 September 2016 MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 20; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 20 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 19; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 19 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 18; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 18 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 17; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas MLOGIC(TRIM): Parameter VALUE has value 12:09:22 AM MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 11; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. 126 127 PROC PRINT DATA=WORK.DirSize_ByPath 128 OBS="Row number" 129 LABEL 130 ; 131 VAR path size_gb size_mb; 132 RUN; NOTE: No observations in data set WORK.DIRSIZE_BYPATH. NOTE: There were 0 observations read from the data set WORK.DIRUSAGE. NOTE: There were 0 observations read from the data set WORK.DIRSIZE_BYPATH. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds user cpu time 0.01 seconds system cpu time 0.01 seconds memory 5634.15k OS Memory 34472.00k Timestamp 26/09/2016 03:09:21 AM Step Count 74 Switch Count 44 Page Faults 0 Page Reclaims 450 Page Swaps 0 Voluntary Context Switches 133 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 133 /* ------------------------------------------------------------------- 134 End of task code. 135 ------------------------------------------------------------------- */ 136 RUN; QUIT; 137 138 /*4. DIRECTORIES BY SIZE*/ 139 PROC SQL; 140 CREATE VIEW WORK.DirSize_BySize AS 141 SELECT size_kb, 142 (size_kb / 1024) as size_mb, 143 (size_kb / (1024*1024)) as size_gb, 144 path 145 FROM WORK.DIRUSAGE 146 ORDER BY size_kb DESC 147 ; NOTE: SQL view WORK.DIRSIZE_BYSIZE has been defined. 148 QUIT; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 299.31k OS Memory 30628.00k Timestamp 26/09/2016 03:09:21 AM Step Count 75 Switch Count 56 Page Faults 0 Page Reclaims 43 Page Swaps 0 Voluntary Context Switches 172 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 264 149 TITLE; 150 TITLE1 "Size of Directories on Disc"; 151 FOOTNOTE; WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable SYSSCPL resolves to Linux WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas 152 FOOTNOTE1 "Generated by the SAS System (&_SASSERVERNAME, &SYSSCPL) on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at 152 ! %TRIM(%SYSFUNC(TIME(), NLTIMAP20.))"; MLOGIC(TRIM): Parameter VALUE has value 26 September 2016 MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 20; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 20 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 19; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 19 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 18; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 18 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 17; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas MLOGIC(TRIM): Parameter VALUE has value 12:09:22 AM MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 11; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. 153 154 PROC PRINT DATA=WORK.DirSize_BySize 155 OBS="Row number" 156 LABEL 157 ; 158 VAR path size_gb size_mb; 159 RUN; NOTE: No observations in data set WORK.DIRSIZE_BYSIZE. NOTE: There were 0 observations read from the data set WORK.DIRUSAGE. NOTE: There were 0 observations read from the data set WORK.DIRSIZE_BYSIZE. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 37838.79k OS Memory 66224.00k Timestamp 26/09/2016 03:09:21 AM Step Count 76 Switch Count 44 Page Faults 0 Page Reclaims 342 Page Swaps 0 Voluntary Context Switches 132 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 160 /* ------------------------------------------------------------------- 161 End of task code. 162 ------------------------------------------------------------------- */ 163 RUN; QUIT; 164 165 /*5. FILES&DIRECTORIESBYPATH*/ 166 PROC SQL; 167 CREATE VIEW WORK.DirSize_BySize AS 168 SELECT size_kb, 169 (size_kb / 1024) as size_mb, 170 (size_kb / (1024*1024)) as size_gb, 171 path 172 FROM WORK.DIRUSAGE 173 ORDER BY size_kb DESC 174 ; NOTE: SQL view WORK.DIRSIZE_BYSIZE has been defined. 175 QUIT; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 299.31k OS Memory 30628.00k Timestamp 26/09/2016 03:09:21 AM Step Count 77 Switch Count 56 Page Faults 0 Page Reclaims 43 Page Swaps 0 Voluntary Context Switches 170 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 264 176 TITLE; 177 TITLE1 "Size of Directories on Disc"; 178 FOOTNOTE; WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable SYSSCPL resolves to Linux WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas 179 FOOTNOTE1 "Generated by the SAS System (&_SASSERVERNAME, &SYSSCPL) on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at 179 ! %TRIM(%SYSFUNC(TIME(), NLTIMAP20.))"; MLOGIC(TRIM): Parameter VALUE has value 26 September 2016 MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 20; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 20 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 19; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 19 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 18; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 18 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 17; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas MLOGIC(TRIM): Parameter VALUE has value 12:09:22 AM MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 11; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. 180 181 PROC PRINT DATA=WORK.DirSize_BySize 182 OBS="Row number" 183 LABEL 184 ; 185 VAR path size_gb size_mb; 186 RUN; NOTE: No observations in data set WORK.DIRSIZE_BYSIZE. NOTE: There were 0 observations read from the data set WORK.DIRUSAGE. NOTE: There were 0 observations read from the data set WORK.DIRSIZE_BYSIZE. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 37838.79k OS Memory 66224.00k Timestamp 26/09/2016 03:09:21 AM Step Count 78 Switch Count 44 Page Faults 0 Page Reclaims 312 Page Swaps 0 Voluntary Context Switches 132 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 187 /* ------------------------------------------------------------------- 188 End of task code. 189 ------------------------------------------------------------------- */ 190 RUN; QUIT; 191 192 /*6. FILES&DIRECTORIES BY SIZE*/ 193 194 PROC SQL; 195 CREATE VIEW WORK.FileSize_BySize AS 196 SELECT size_kb, 197 (size_kb / 1024) as size_mb, 198 (size_kb / (1024*1024)) as size_gb, 199 path 200 FROM WORK.FILEUSAGE 201 ORDER BY size_kb DESC 202 ; NOTE: SQL view WORK.FILESIZE_BYSIZE has been defined. 203 QUIT; NOTE: PROCEDURE SQL used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 299.31k OS Memory 30628.00k Timestamp 26/09/2016 03:09:21 AM Step Count 79 Switch Count 56 Page Faults 0 Page Reclaims 43 Page Swaps 0 Voluntary Context Switches 170 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 264 204 TITLE; 205 TITLE1 "Size of Directories & Files on Disc"; 206 FOOTNOTE; WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable SYSSCPL resolves to Linux WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas 207 FOOTNOTE1 "Generated by the SAS System (&_SASSERVERNAME, &SYSSCPL) on %TRIM(%QSYSFUNC(DATE(), NLDATE20.)) at 207 ! %TRIM(%SYSFUNC(TIME(), NLTIMAP20.))"; MLOGIC(TRIM): Parameter VALUE has value 26 September 2016 MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 20; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 20 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 19; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 19 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 18; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 18 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is FALSE MLOGIC(TRIM): %DO loop index variable I is now 17; loop will iterate again. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 17 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 26 September 2016 SYMBOLGEN: Some characters in the above value which were subject to macro quoting have been unquoted for printing. SYMBOLGEN: Macro variable I resolves to 17 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. MLOGIC(TRIM): Beginning execution. MLOGIC(TRIM): This macro was compiled from the autocall file /pbr/sfw/sas/940/SASFoundation/9.4/sasautos/trim.sas MLOGIC(TRIM): Parameter VALUE has value 12:09:22 AM MLOGIC(TRIM): %LOCAL I SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM MLOGIC(TRIM): %DO loop beginning; index variable I; start value is 11; stop value is 1; by value is -1. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition %qsubstr(&value,&i,1) ne is TRUE MLOGIC(TRIM): %GOTO TRIMMED (label resolves to TRIMMED). SYMBOLGEN: Macro variable I resolves to 11 MLOGIC(TRIM): %IF condition &i>0 is TRUE WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. SYMBOLGEN: Macro variable VALUE resolves to 12:09:22 AM SYMBOLGEN: Macro variable I resolves to 11 WARNING: Apparent symbolic reference _SASSERVERNAME not resolved. MLOGIC(TRIM): Ending execution. 208 209 PROC PRINT DATA=WORK.FileSize_BySize 210 OBS="Row number" 211 LABEL 212 ; 213 VAR path size_gb size_mb; 214 RUN; NOTE: No observations in data set WORK.FILESIZE_BYSIZE. NOTE: There were 0 observations read from the data set WORK.FILEUSAGE. NOTE: There were 0 observations read from the data set WORK.FILESIZE_BYSIZE. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.01 seconds memory 37838.79k OS Memory 66224.00k Timestamp 26/09/2016 03:09:21 AM Step Count 80 Switch Count 48 Page Faults 0 Page Reclaims 310 Page Swaps 0 Voluntary Context Switches 132 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 0 215 216 proc export data = WORK.FileSize_BySize 217 outfile = '/home/deepankeranand0/DSP project/sas_disc.xls' 218 dbms = xls; 219 run; NOTE: The export data set has 0 observations and 4 variables. NOTE: "/home/deepankeranand0/DSP project/sas_disc.xls" file was successfully created. NOTE: PROCEDURE EXPORT used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 37866.32k OS Memory 66224.00k Timestamp 26/09/2016 03:09:21 AM Step Count 81 Switch Count 34 Page Faults 0 Page Reclaims 458 Page Swaps 0 Voluntary Context Switches 100 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 24 220 221 /* ------------------------------------------------------------------- 222 End of task code. 223 ------------------------------------------------------------------- */ 224 RUN; QUIT; 225 226 227 228 229 230 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; SYMBOLGEN: Macro variable GRAPHTERM resolves to GOPTIONS NOACCESSIBLE; 242