![]() 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 |
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. |
| 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.