LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (January 2008, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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


Back to: Top of message | Previous page | Main SAS-L page