BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
touwen_k
Pyrite | Level 9

hello SAS Community, I have SAS 9.4 M8 and  authenticated as custom app to SAS Viya so that I can make a cas session.  That part goes well now. What is the example code how to upload a table  from SAS Data Integration Studio in SAS 9.4 to SAS Viya?  Pls advise it would be great to have this option.

1 ACCEPTED SOLUTION
3 REPLIES 3
SASKiwi
PROC Star

The best option I can think of is SAS/CONNECT. Viya includes SAS/CONNECT. but it comes as an add-on to SAS 9.4. With SAS/CONNECT you can use the PROC UPLOAD and PROC DOWNLOAD to move SAS data between SAS 9.4 and Viya. You can even remotely submit code from SAS 9.4 to Viya. To check if you have SAS/CONNECT installed and licensed in SAS 9.4 run this:

 

proc product_status;
run;

proc setinit;
run;
touwen_k
Pyrite | Level 9
Thank you for your answer