ODS and Base Reporting

Build reports by using ODS to create HTML, PDF, RTF, Excel, text reports and more!
BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
SASGeek
Obsidian | Level 7

Hi there,

I'm trying to run an ODS Excel and get and I get an insufficient memory error. Here are my specs

 

 

ODS excel file = "C:\MyStuff 2016 run on &sysdate..xlsx";
proc report data = all3 nowd;
column <<35 variables listed>>
run;
ods excel close;

 

  • Total observations: 90166
  • System: Windows7
  • SAS Ver: 9.4 TS1M3 X64_7PRO Platform
  • RAM: 16 gig

 

Any ideas what to do to get the data out? I need it to output to Excel.

 

Thanks

1 ACCEPTED SOLUTION

Accepted Solutions
Vince_SAS
Rhodochrosite | Level 12

You may want to try increasing the value of the MEMSIZE system option:

 

Problem Note 56985: An out of memory condition might occur when you use the ODS destination for Excel with large tables

http://support.sas.com/kb/56/985.html

 

Submit this code to see the current setting for the option:

 

proc options option=memsize; run; quit;

 

Vince DelGobbo

SAS R&D

View solution in original post

3 REPLIES 3
Reeza
Super User

Post your log. There's nothing about your code that should generate that error message with less than 100k records. 

Vince_SAS
Rhodochrosite | Level 12

You may want to try increasing the value of the MEMSIZE system option:

 

Problem Note 56985: An out of memory condition might occur when you use the ODS destination for Excel with large tables

http://support.sas.com/kb/56/985.html

 

Submit this code to see the current setting for the option:

 

proc options option=memsize; run; quit;

 

Vince DelGobbo

SAS R&D

SASGeek
Obsidian | Level 7

Thanks everyone for your help. Two things worked:

 

1. Increasing memsize as Vince pointed out (I used memsize = max)

2. Giving up on ODS altogether and just doing a proc export. I didn't need all the formatting with ODS and the memory it takes up so I just did it that way.

 

Thanks all for great answers.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 12104 views
  • 1 like
  • 3 in conversation