BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Phil_NZ
Barite | Level 11

Hi everyone,

 

I am dealing with a sas7bdat dataset file of around 120 GB. After using SAS EG to open it, I perform a quick search for IID="01W", the program stuck and suspend for a long time and still not working so far.

My97_0-1614400246294.png

Could you please tell me what should be the solution here? Talk to the tech guy and what should I talk to them?

 

Warm regards.

Thank you for your help, have a fabulous and productive day! I am a novice today, but someday when I accumulate enough knowledge, I can help others in my capacity.
1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

If you are running into resource issues subsetting in the SAS table viewer then try reducing the number of rows in your table first to see what the maximum number of rows gives good responses. View the SMALL table and try subsetting it.

data small;
  set big (obs = 100000);
run;

View solution in original post

3 REPLIES 3
ballardw
Super User

If you mean you are searching in the table viewer then it is just a resource limitation. The window into a data set takes resources and 120GB is pretty big. You would be much better off using a query to subset the data into a new data set to the given values and open that. Unless you are going to have 100GB resulting from that query.

 

You will find a number of posts in the forum about how to disable the automatic table viewer when working with large data sets.

Phil_NZ
Barite | Level 11

Hi @ballardw 

 

Is there any requirement for the RAM or ROM if I deal with a dataset around 1TB by using SAS EG?

 It is my current computer status

My97_0-1614411309327.png

 

Warm regards.

 

Thank you for your help, have a fabulous and productive day! I am a novice today, but someday when I accumulate enough knowledge, I can help others in my capacity.
SASKiwi
PROC Star

If you are running into resource issues subsetting in the SAS table viewer then try reducing the number of rows in your table first to see what the maximum number of rows gives good responses. View the SMALL table and try subsetting it.

data small;
  set big (obs = 100000);
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 935 views
  • 2 likes
  • 3 in conversation