BookmarkSubscribeRSS Feed
mrom34
Calcite | Level 5

Hi,

I am testing some code developed on PC SAS on our new EG server and I noticed that some procedures are very slow on EG. I am running this simple code below:

  ods output ParameterEstimates=_LinEst;

    ods listing close;

    proc glm data=_LinearData;

   model Log2Fam = reg_cycle / Solution;

   by Plate WellID;

    run;

    quit; 

It takes 15 seconds on PC SAS but more than 11 minutes on EG server. The input data set has more than 100000 row. Is it slow on EG because SAS need to send a lot of information from the server to the client with the ods output? How can make this procedure faster on EG ?

Thanks

2 REPLIES 2
ChrisHemedinger
Community Manager

If your intent is to suppress the ODS "printed output" (because it may be large), then try this:

In your process flow, right-click on the program that generates all of the results, select Properties.

Click the Results tab. Select "Customize results formats, styles, and behavior".

UNCHECK all of the results output formats.

UNCHECK "Automatically open data and results"

See if that runs faster.  This will tell EG to not generate its default ODS statements for creating SAS Report or HTML output.

Chris

Register for SAS Innovate 2025!! The premier event for SAS users, May 6-9 in Orlando FL. Sign up now for the best deals!
mrom34
Calcite | Level 5

Hi Chris,

Thanks a lot for your answer. It is now much faster.

Romain

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1442 views
  • 3 likes
  • 2 in conversation