Below code will print the memsize option in GB:
data mem;
Mem = input(getoption('memsize'), 32.);
K = mem / 1024;
Meg = k / 1024;
Gig = meg / 1024;
format _numeric_ comma12.;
run;
Blog about SAS® platform administration and working with SAS metadata.
Below code will print the memsize option in GB:
data mem;
Mem = input(getoption('memsize'), 32.);
K = mem / 1024;
Meg = k / 1024;
Gig = meg / 1024;
format _numeric_ comma12.;
run;
Comments
Post a Comment