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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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