Thanks again for your swift response. I did ran your code in SAS EG and got the error as follows. 15 filename oscmd pip "ulimit -d"; ERROR: Invalid device type. ERROR: Error in the FILENAME statement. 16 17 data _null_; 18 19 infile oscmd; 20 21 input; 22 23 put _infile_; 24 25 run; ERROR: No logical assign for filename OSCMD. Please see my code (and log) below to create charts. proc univariate data=sashelp.class; 16 var age height; 17 histogram age; 18 run; ERROR: Unable to allocate sufficient memory. At least 469K bytes were requested, but only 45K were available. You must either increase the amount of memory available, or approach the problem differently. ERROR: Driver SASGDGIF will not load. ERROR: Device was not specified. ERROR: Unable to load graphics. I'm getting the same error when I tried to produce chart (in EG) manually from the SAS dataset.
... View more