Hi,
We have Base SAS on a UNIX server and I am trying to run the code below fro SAS EG. It works fine with a local path on the PC for the outfile where PC files server is Installed. The below is also running fine if I also specify username and password, but I don't want to hard code my credentials in the code. Wanted to ask if there are any workarounds . I need to export to both excel and access from SAS EG.
PROC EXPORT data=sashelp.cars
dbms=excelcs
outfile="\sharepoint Location\test_cars.xls" replace;
sheet = Data;
server="xx.xx.xx.xx" ;
port=9621;
run;
PROC EXPORT DATA=sashelp.cars
OUTTABLE="cars1"
DBMS=ACCESSCS REPLACE ;
DATABASE="\SharePoint location\test_cars.MDB";
SERVER="xx.xx.xx.xx" ;
PORT=9621;
RUN;
Thanks,
Praveena
You can have EG prompt you for the userid and password using masked single line text type so that they don't show up in the log.
You could use PROC PWENCODE to encode the passwords. While that stops casual users from deciphering the original password, it doesn't stop users from copying the password to use in their own processes.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.