SAS 9.1 - SAS Server Main vs. Local Libraries -
i'm working on older sas server (running 9.1). other users of system strictly use sas server; however, have need transfer data between , local sas server. when invoking libname statements, actual path of sas server listed , therefore fails resolve libname foo 'c:\mypathname\foo'; , instead seems regard libname foo '/server/longerpath/c:\mypathname\foo'. have handful of paths on sas server libname bar 'serverpath\bar' using well. possible access both local sas library sasmain server library?
if you're running code on server, unless have sas/connect (are using rsubmit), need give server path access local machine if not on - may impossible, or may have unc path, \machinename\c$\foo\ , can access with.
if you're using rsubmit, can access server's libraries (including work) using server=
option on libname
local machine prior rsubmit, and/or proc download
or proc upload
.
Comments
Post a Comment