BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Rhys
Obsidian | Level 7

I'm running a long loop and I want to update the log every now and again so I can keep track of it's progress however Enterprise guide 5.1 running on a Linux server will only output once the datastep has completed, is there an option to force my put statements to output to the log when they happen?

 

Thanks

 

data _null_;
	do i = 1 to 10;
		do y = 1 to 100000000;
		end;
		put i;
	end;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
BrunoMueller
SAS Super FREQ

Hi

 

Have a look at this blog entry Tracking progress in your program with SAS Enterprise Guide: another trick by @ChrisHemedinger

 

It shows how to use the DOSUBL functtion together with the SYSECHO statement. Together they will do what you need.

 

Bruno

View solution in original post

4 REPLIES 4
BrunoMueller
SAS Super FREQ

Hi

 

Have a look at this blog entry Tracking progress in your program with SAS Enterprise Guide: another trick by @ChrisHemedinger

 

It shows how to use the DOSUBL functtion together with the SYSECHO statement. Together they will do what you need.

 

Bruno

Rhys
Obsidian | Level 7

I like it, this line does what I want;;

 

with a set statement;
rc = dosubl(cats('SYSECHO "OBS N=',_n_,'";'));

 

in a loop;

rc = dosubl(cats('SYSECHO "OBS N=',i,'";'));

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
  • 4 replies
  • 1096 views
  • 2 likes
  • 4 in conversation