BookmarkSubscribeRSS Feed
luca87
Obsidian | Level 7

Hi,
I have some tables to load in cas (more than 4Gb) and when I go to update it takes a long time. I currently use this script

 

%if %sysfunc(exist(&Caslib..&OutTable))>0 %then %do;
    proc casutil;
        droptable incaslib="&caslib." casdata="&OutTable.";
    run;
%end;

proc casutil;
    load data=&libname..&table
    outcaslib="&caslib." casout="&OutTable." PROMOTE;
run;

proc casutil;
    save casdata="&OutTable." incaslib="&caslib."
    outcaslib="&caslib." casout="&OutTable." REPLACE;
run;

Is there any procedure to update the cas table + sashdat faster?

 

 

Thanks,

Luca

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

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
  • 0 replies
  • 855 views
  • 0 likes
  • 1 in conversation