BookmarkSubscribeRSS Feed
mdcervantes
Calcite | Level 5

How do I download .sashdat from SAS Viya? My alternative is to export the table to .csv but it wouldn't allow me to save the proper field types once I import it again later.

2 REPLIES 2
HarrySnart
SAS Employee

Hi @mdcervantes , you can use the table.save CAS Action via PROC CAS as one way. Example from documentation below

proc cas;
  session casauto;
  table.save /
    table="iris"
    name="irisCopy.sashdat"
    replace=True;
    
  table.fileInfo /                                                /* 1*/
    path="irisCopy.sashdat";
quit;

You can view the action set details here: https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/caspg/cas-table-save.htm

 

Likewise, you can use PROC CASUTIL to save tables to sashdat as well.

 

Hope this helps

Harry

alisio_meneses
Quartz | Level 8
Hi there, @mdcervantes. Did you manage to download .sashdat from SAS Viya? If so, how dit you do it?

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 1693 views
  • 1 like
  • 3 in conversation