BookmarkSubscribeRSS Feed
PoulRavn
Obsidian | Level 7

Hi,

I have a task, that uses proc nlin up to 10000 times (wrapped in a by statement). I think I remember from PC SAS days, that I could turn off ALL output from proc nlin (and other procs), but in EG (6.1) I do not seem to be able to find the option to do so. It has the consequnce, that when I click on the log tab, the log is so big, that it seriously slows down opening it, and in cases it has crashed EG (or I ended it myself).

Anyone remembers/knows how to turn off EVERYTHING from proc nlin?

Regards

Poul

2 REPLIES 2
Ksharp
Super User

ods _all_ close;

proc print data=sashelp.class;run;

or re-direct LOG into an file.

proc printto log='c:\temp\temp.log' ; run;

..... Your Code ........

proc printto;run;

Xia Keshan

Message was edited by: xia keshan

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

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
  • 1100 views
  • 0 likes
  • 3 in conversation