Hello, I'm trying to export data as .txt (comma delimited) to a local machine using SAS EG. A couple questions: 1) Is this even possible? While looking through the documentation, it seems that you can only specify the DBMS as Accesscs or Excelcs (link) in order to export to a local machine. However, when I perform an export as .txt through the "Export file as step in project" it works fine. 2) Would you have to specify a Server_Name and Port_Number similar to an Excelcs export? PROC EXPORT
DATA=WORK.DISTRIBUTIONS
OUTFILE="<file path>"
DBMS=<?> REPLACE;
SERVER_NAME = "&serv_name";
PORT_NUMBER = 9621;
RUN; Any help is appreciated. Thanks.
... View more