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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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