Im running into errors when trying to export my sas dataset to .dta format for Stata from SAS University Edition on a Virtual Machine. I'm using the following code : LIBNAME library "/folders/myfolders/"; PROC EXPORT DATA=opafy17nid OUTFILE="/folders/myfolders/opafy17nid.dta" DBMS=PCFS REPLACE; SERVER="PCFilesServer" ; RUN; The log file shows: Bridge server not answering ERROR: Export unsuccessful. See SAS Log for details. NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE EXPORT used (Total process time): real time 0.11 seconds cpu time 0.02 seconds Could someone please help me out?
... View more