My question is not about building and setting up the AUTOLOAD folder in VA . The folder is already setup and datasets from other parts of my company are already there and read into VA. I need to create my dataset there, too. This is what I have come so far for more clarity: In SAS, I am writing the following base code (MY_CONNECTION contains the connection to my db): LIBNAME MYLIB ODBC noprompt= "MY_CONNECTION";
DATA NEW;
SET MYLIB.ReportLG;
RUN;
PROC SQL;
CREATE TABLE NEW AS SELECT * FROM MYLIB.ReportLG;
QUIT; Problem is, the results are created in the temporary WORK folder. How can I change the code so that the resulting dataset shows up in e.g. C:/MyFolder?
... View more