例如,我希望将文件_PRODSAVAIL
导出到共享文件夹,该文件夹由log / pass保护。如何在脚本中设置日志/传递?
PROC EXPORT datafile="\\10.48.42.166\export\november.csv"
out=work._PRODSAVAIL
dbms=csv
replace;
getnames=yes;
RUN;
答案 0 :(得分:2)
这不是一个SAS问题,您只需要设置环境,以便SAS在运行程序之前可以写入该位置。
查看类似问题的答案:https://superuser.com/questions/344775/passing-unc-username-and-password-within-a-unc-path
总而言之,如果您使用的是Windows,则在运行SAS程序之前运行“net use”命令来提供凭据。