Hi All
In SAS example /Products/SAS Intelligence Platform/Samples/Sample: Shoe Sales by Region code:
%let _ODSOPTIONS=%str(body=region1.html newfile=table);
%STPBEGIN;
proc report data=work.shoes nowd;
column region subsidiary product sales inventory returns;
define region / order noprint "Region";
define subsidiary / order "Subsidiary";
define product / order "Shoe Style";
define sales / sum "Sales";
define inventory / sum "Inventory";
define returns / sum "Returns";
break after subsidiary / summarize suppress style=Header;
break before region / page ;
compute before _page_ / center style=BeforeCaption;
line "Men's and Women's Shoe Sales Figures for " region $25.;
endcomp;
run;
*;
* Use STPEND to close the HTML output destination so that ODS will
* write the appropriate HTML to mark the end of the documents that
* have been created.
*;
%STPEND;
enables creating html files referred by links for each region.
My question is: when I try to create large number of files (let's say 1000) the first redirection from clicked link in SASPortal takes for example 10-20 second. And then every next navigation between links takes 1-3 seconds (seems like in a meantime some caching or optimalization was made). Is there any solution to force quick file searching (caching) in such case, not to wait longer for the first time ?
Best Regards
Norbert
Hi Cynthia
Thank you for your time. I will try to tackle this problem with TechSupport then.
Best Regards
Norbert
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.