Chapter Contents |
Previous |
Next |
GETQUOTA |
Language element: | function |
Category: | general-purpose OpenVMS |
OpenVMS specifics: | All aspects are host-specific |
Syntax | |
Details | |
Example | |
See Also |
Syntax |
GETQUOTA(dev,user,usage,perm,over,context) |
Details |
Besides storing the quota information in the USER, USAGE, PERM, and OVER variables, the GETQUOTA function also returns the OpenVMS status code that is returned by SYS$QIO. The OpenVMS status code can have the following return codes:
1 |
indicates the GETQUOTA function was successful and more disk quota remains. |
996 |
indicates that no more quota information is available. |
980 |
indicates that quotas are not enabled on the volume. |
Note: In order to use the GETQUOTA function,
you must
have either SYSPRV privileges or read access to QUOTA.SYS on
the volume.
Example |
The following example uses the GETQUOTA function:
data gquota; dev="$1$DUA0:"; user=0; usage=0; perm=0; over=0; context=0; do until (rc ^= 1); rc=getquota(dev,user,usage,perm,over,context); output; end; run; proc print data=gquota; run;
See Also |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.