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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1179 views
  • 0 likes
  • 4 in conversation