I am connected using ODBC to a database table and I am loading that table into SAS Enterpside Guide.
What I want to do is to save the table content as a SAS data set but in Visual Analytics AUTOLOAD folder. It is apparently saved in the WORK library with my current settings which does not serve my purpose.
So I guess I can split my problem into two questions:
Thanks in advance but please do not answer with general statements.
Hi @pedrammobedi, I believe your questions are being answered on a different post. Maybe it would be interesting if you refer to the links on the other posts and mention if the question is solved or not 😉
Copying a dataset to the SAS VA Autoload folder is as simple as putting it here - please note this is the default location for Windows so it may be different for you.
\SAS\Config\Lev1\AppData\SASVisualAnalytics\VisualAnalyticsAdministrator\ AutoLoad
A simple SAS program can move it there:
libname autoload "\\MySASVAServer\SAS\Config\Lev1\AppData\SASVisualAnalytics\VisualAnalyticsAdministrator\
AutoLoad";
data autoload.MyTable;
set MyTable;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.