BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Emma_at_SAS
Lapis Lazuli | Level 10

I have a dataset with thousands of rows and when I tried to make several new datasets step-by-step at some point I received a similar error to the following post https://communities.sas.com/t5/SAS-Enterprise-Guide/Insufficient-Space-in-file/m-p/593266#M34787

ERROR: Insufficient space in file MYLIBRARY.MYTABLE

ERROR: File MYLIBRARY.MYTABLE is damaged. I/O processing did not complete.

@Kurt_Bremser recommended using COMPRESS=YES

I used the COMPRESS command like the following, and I did not get that ERROR message anymore BUT I wanted to make sure that I've applied the COMPRESS command correctly and that I will not miss any important data or space in my new WANT data.

DATA WANT;

SET HAVE (COMPRESS=YES);

RUN;

 

Thanks

 

 

1 ACCEPTED SOLUTION
6 REPLIES 6
Tom
Super User Tom
Super User

The COMPRESS= dataset option can be used to override the value of the COMPRESS option set in the system level COMPRESS option or defined in the LIBNAME statement that defined the libref.

 

When reading from a dataset SAS will just look at the dataset to tell if it was stored with compression or not.  So using COMPRESS= makes no sense as a dataset option on the INPUT dataset.   

 

If you want to use it in that code then add is as a dataset option on the OUTPUT dataset.

 

 

Emma_at_SAS
Lapis Lazuli | Level 10

Thank you @Tom for your thoughts. To check if I am understanding your suggestion

You suggest that it does not make sense to use COMPRESS=YES in the SET statement of a DATA step. At most, I may use COMPRESS=YES at the DATA statement of a data step like

DATA WANT (COMPRESS=YES);

SET HAVE;

RUN;

but if I want to save the WANT dataset for my future permanent dataset then I should avoid using COMPRESS at any point in a data step.

I appreciate it if you may check my understanding.

Thanks

Emma_at_SAS
Lapis Lazuli | Level 10

Thank you,  @Kurt_Bremser for sharing your insight. Is there a risk that I remove a meaningful SPACE in my character variables if I use COMPRESS=YES in the SET statement of a DATA step?

Thanks so much

Tom
Super User Tom
Super User

@Emma_at_SAS wrote:

Thank you,  @Kurt_Bremser for sharing your insight. Is there a risk that I remove a meaningful SPACE in my character variables if I use COMPRESS=YES in the SET statement of a DATA step?

Thanks so much


It does not change the values.  Just how the file is formatted on the disk.

Kurt_Bremser
Super User

Character variables are always padded with blanks to their defined length. Even if those blanks are compressed, they will be recreated upon reading observations into the PDV.

 

Almost all permanent datasets at the place I used to work at were compressed, and we never lost data.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 597 views
  • 3 likes
  • 3 in conversation