Hi
I am trying to import an Excel file of 8 Lakh Observations and 34 variables into SAS university edition. I have to wait for around 5-10 minutes for data step to process but the proc print step never compiles, not within an hour even.
Even the data step never reads the whole data, it stops at around 6-7 Lakhs Obs. I even tried with 1 lakh Obs still the same result.
Can anyone suggest how to read the complete data? and what is the Limit of sas University edition of reading the data?
Do NOT import into the WORK library. That resides in /tmp within the UE VM and is therefore limited.
Instead define a library on a subdirectory of the shared folder you set up when installing UE. That is in the host computer's filesystem and therefore limited only by your available disk storage.
Be aware that your data may still be too large to do anything useful with it, as utility files during processing will exceed the temporary workspace.
What are the attributes of your 34 variables (type, length)?
Try saving the Excel file to CSV - File -Save As.
Import that instead.
You mention a "data step". So may be you should post the code you use for that.
What OS you use for SAS University Edition and what version ?
Is you execl file on same PC or on a server ?
By what excel version is the file created? Is it .xls or .xlsx ?
What is your code to read the execl file and print ?
Do NOT import into the WORK library. That resides in /tmp within the UE VM and is therefore limited.
Instead define a library on a subdirectory of the shared folder you set up when installing UE. That is in the host computer's filesystem and therefore limited only by your available disk storage.
Be aware that your data may still be too large to do anything useful with it, as utility files during processing will exceed the temporary workspace.
What are the attributes of your 34 variables (type, length)?
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.