This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DataBaseName TableName Space_Utilised_KB Avg_Space_Per_Amp_KB Max_Space_Amp_KB SKEWFACTOR | |
1 SB_GHRI c14NOV2013_cod_no_state 1,795.50 112.22 117.5 4.49 | |
2 SB_GHRI c14NOV2013_death_no_state 3,614.00 225.88 231.5 2.43 | |
3 SB_GHRI c14NOV2013_death 6,927.50 432.97 438 1.15 | |
4 SB_GHRI c14NOV2013_cod 10,232.50 639.53 647 1.15 | |
5 SB_GHRI c14NOV2013_specfile 13,242.50 827.66 836.5 1.06 | |
6 SB_GHRI c20NOV2013_person_languages 17,970.00 1,123.13 1,134.50 1 | |
7 SB_GHRI c27FEB2013_everndc 23,660.50 1,478.78 1,507.50 1.91 | |
8 SB_GHRI c05NOV2013_tumor_ghc_cases 26,137.00 1,633.56 1,700.50 3.94 | |
9 SB_GHRI c20NOV2013_demog 173,335.00 10,833.44 10,860.00 0.24 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data have; | |
retain prx ; | |
input path : $800.; | |
if _n_ = 1 then do ; | |
prx = prxparse("(Sect1.2.3b|Sect1.1.a|Sect2.3.b|Sect3.3.2c)") ; | |
end ; | |
flg = (prxmatch(prx, path) > 0) ; | |
if flg then do ; | |
call prxsubstr(prx, path, pos, len) ; | |
excerpt = substr(path, pos, len) ; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data gnu ; | |
input | |
@1 var_name $char20. | |
@23 value $char1. | |
@27 enr_end date9. | |
@39 site $char1. | |
@43 pct | |
; | |
format | |
enr_end mmddyy10. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data gnu ; | |
input | |
studyid $char6. | |
event_datetime $char26. | |
event_name $char50. | |
; | |
infile datalines | |
dsd | |
delimiter = '09'x | |
firstobs = 2 |
NewerOlder