- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
I am using the University sas studio version and working with large datasets for my practicum. After running a few data sets, I start receiving the following errors that prevents me from running future code:
Can someone assist with this? I have cleared my library but that has not fixed the issue.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Generally, WORK data sets and permanent SAS data sets take up the same amount of space.
If you are using SAS/Studio via SAS On Demand for Academics, there are also size limits which would potentially prevent you from working with huge data sets.
Paige Miller
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
I would start by adding the COMPRESS option to each of the large datasets:
data Want (compress = yes);
set Have;
run;
That should allow you to process more data. If that isn't enough then delete any earlier datasets in your program that you no longer need:
proc datasets library = WORK;
delete Have;
run;
quit;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
This allowed me to run more additional datafile but it's ultimately filled past that point. What if I switched all the datasets over into permanent sas libraries, would this combat the issue? I am currently working with large CSV files and could potentially switch them to sas7bdat form and try this way.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Generally, WORK data sets and permanent SAS data sets take up the same amount of space.
If you are using SAS/Studio via SAS On Demand for Academics, there are also size limits which would potentially prevent you from working with huge data sets.
Paige Miller