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

SAS For Dummies 3rd Edition! Check out the new edition, covering SAS 9.4, SAS Viya, and all of the modern ways to use SAS!
mrom34
Calcite | Level 5

Hi Chris,

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

Romain

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1608 views
  • 3 likes
  • 2 in conversation