BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
FightingIllini
Calcite | Level 5

Hey All,

I have a data set stored locally on my computer that I would like to send to a remote server. I have code that connects me to the remote server in a Unix enviroment.  I am trying to use rsubmit along with proc upload to copy my data set into a library on the sever. The problem I have is I don't know the names of specific libraries on the server.  Any ideas?

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

As long as you have permission to do so, yes. A library is simply a directory/folder. Create your folder on your server first and then map to it.

View solution in original post

4 REPLIES 4
Reeza
Super User

If it's a SAS server you can find the libnames that exist already:

rsubmit;

proc sql;

select distinct libname from sashelp.vtable;

quit;

FightingIllini
Calcite | Level 5

Thanks for the response Reeza. Do you know if there is a way to create a new library on the server as well?

Reeza
Super User

As long as you have permission to do so, yes. A library is simply a directory/folder. Create your folder on your server first and then map to it.

FightingIllini
Calcite | Level 5

Thanks for the help Reeza. I realized I could also just use the work library too.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 4 replies
  • 1694 views
  • 4 likes
  • 2 in conversation