| Date: | Fri, 18 Jan 2008 21:25:28 +1300 |
| Reply-To: | Robin Templer <templerr@CLEAR.NET.NZ> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Robin Templer <templerr@CLEAR.NET.NZ> |
| Subject: | Anyoine know where the SIZEKMG. format is documented ?? |
| Content-Type: | text/plain; charset="us-ascii" |
Try running this code (Works for me under Windows and Unix) using 9.1.3.
data ;
Do y=1,1000, 10000, 100000, 1000000, 100000000, 1000000000 ;
X=Y * 1024 ;
put x sizekmg8.2;
END ;
run;
I saw this last night on a new usage note for Z/OS and decided - in the true
SAS way (doesn't SAS stand for 'Suck And See' ??) - to give it a try. It
does not work to the TB level - but works up to 999.99GB.
Had just finished writing a process to monitor disk quotas where the format
would have been extremely useful !
Cheers
Robin
|