BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
Zaichik17
Calcite | Level 5

I keep having issues running SAS programs. I'm a student using SAS for multiple classes.  I get the box that says it is greater than 3 MB, display anyway, which 3 MB is not that big though.  Iv'e still been able to run these programs with this error, except now I have a new project for class and all I have done is imported a csv file which is 2.5 MB and tried to PROC Print to look at the data, and SAS does the running for a long time then completely terminates the session.

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

When you PRINT a large dataset in SAS Studio, the output needs to be displayed in your browser, and the capacity of browser windows is limited. To see a sample of your data, use a OBS= dataset option to keep the output in a reasonable size.

View solution in original post

2 REPLIES 2
Kurt_Bremser
Super User

When you PRINT a large dataset in SAS Studio, the output needs to be displayed in your browser, and the capacity of browser windows is limited. To see a sample of your data, use a OBS= dataset option to keep the output in a reasonable size.

Reeza
Super User
Rather than print the full data set, print a subset (20 records) or view the table in SAS instead of PROC PRINT.

proc print data=have(obs=20);
run;

SAS Innovate 2025: Call for Content

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!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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
  • 2 replies
  • 669 views
  • 0 likes
  • 3 in conversation