BookmarkSubscribeRSS Feed
SASPhile
Quartz | Level 8
When I run the following code,i get Output full window message.
When I run the same for reg, i dont get that message.
PROC UNIVARIATE DATA=wh.Clsindx46_v4 PCTLDEF=3;
VAR ytds;
OUTPUT OUT=UNIOUT
PCTLPTS=0 10 20 30 40 50 60 70 80 90 100
PCTLPRE=PCTL;
by outlet;
*by reg;
RUN;
3 REPLIES 3
Ksharp
Super User
Do you try to use ' options nonotes ; ' statement which can suppress the notes about proc .


Ksharp
Peter_C
Rhodochrosite | Level 12
run in batch
Doc_Duke
Rhodochrosite | Level 12
I assume that there are more levels to outlet than reg, so the volume of output is higher. If you are running SAS interactively, it tries to store all of the log and output in memory and that is why you are getting the message. Dropping the notes saves some space. For a more robust solution, you can either
-- run in batch, as previously mentioned.
-- Use PROC PRINTTO to redirect the output to a file.

These are both limited by available disk space.

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 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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