I am preparing for the SAS 9.4 Base Programming Performance-Based Exam and while trying to solve the practice exam using the data given here: https://support.sas.com/downloads/package.htm?pid=2339. After third program submitted the system gave me error; " User <username> has insufficient permissions to create /home/<username>/.. Contact your system administrator to resolve. " My username at right below corner switched from "u0*******" to my e-mail address and when I reload the homepage my quota usage increased from 518 MB to 5618 MB. I checked properties of the new files that I uploaded and also outputs I created but all of them was under 1 MB in size. When I deleted them all, the quota reversed back. In the end, I could not complete the practice exam. I am posting the 3 practice program that I have submitted before the error. libname cert "/home/u43396434/Cert/input"; libname results "/home/u43396434/Cert/output"; data results.output04; set cert.input04; INT1=round(VAR1); INT2=round(VAR2); VAR3=round(VAR1) * round(VAR2); VAR20=sum(of VAR12-VAR19); run; proc print data=results.output04; run; proc sort data=cert.input08a out=sorteda; by ID; run; proc sort data=cert.input08b out=sortedb; by ID; run; data results.match08 results.nomatch08 (drop=Ex:); merge sorteda (in = up1) sortedb (in = up2); by ID; if up1 = 1 and up2 = 1 then output results.match08; else output results.nomatch08; run; proc print data= results.nomatch08; run; data results.output12; set cert.input12; do until (salary>500000); salary=salary*0.0565; year+1; output; end; run; proc print data=results.output12; run;
... View more