I am trying to use SAS Studio in VirtualBox, when I run certain scripts though- I get numerous errors. Namely, when I run the following code:
proc import datafile = "UTDCASESTUDYDATA1.xlsx"
out = ti
dbms = excel;
run;
I get the error:
ERROR: DBMS type EXCEL not valid for import. NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE IMPORT used (Total process time): real time 0.01 seconds cpu time 0.00 seconds
I am wondering, what is the functionality of SAS Studio compared to the normal desktop version of the program? For example, when I try to run PROC ASSOC
or certain plotting functions, I get an error that the function is "unavailable" so Im wondering if these procedures are simply limited from SAS Studio or if I have syntax errors.
Any help is appreciated.
proc
is unavailable, only the DBMS engineexcel
is not valid. Shouldn't it bedbms=xlsx
? Outside from that I'm not too familiar with SAS Studio. – user2877959