☑ This topic is solved.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 07-12-2024 10:59 AM
(1034 views)
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
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
3 REPLIES 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
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;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for your answer