Hi All,
I am unable to access the worktables which has my data for profiling through SAS code node.
I have added that table through setting of source bidding.
So my data step contains a file reader and work table writer.
i reference this in process flow as i need to execute some SAS codes.
But SAS code sas the work table doesnt exits
I cant see the work table as active tab while filling the source binding details in input.
Where can i see my SAS libraries in dataflux?
In the DataFlux Data Management Studio Data tab, in the Data panel, right click on Data Connections and select New Data Connection - SAS Data Set Connection. This will enable you to set up a DataFlux connection to an existing or new SAS data library. I've found it is good practice to define DataFlux SAS Data Set Connections with the same name that you use in SAS as your LIBREF (libname MyLibRef "MySASLibraryPath").
@ShikhaAgarwal - As requested Dataflux Doc Link
The same help doc is available inside DataFlux by selecting Help.
cant really get how can i make SAS code node read what it receives from previous node.
A simple
PROC print data=source;
run;
Any help on this will be highly appreciated.
We have a client demo next week and I need to resolve this ASAP.
I am quite new to sas.
The LIBNAME error suggests that the SAS product SAS/ACCESS to ODBC is not installed. You can check what SAS products are installed by running this SAS program:
proc product_status;
run;
However in DataFlux you can also set up a direct ODBC data connection as described the documentation link I sent you. This way does not require SAS/ACCESS to ODBC. As long as you have an installed Azure ODBC driver and a DSN defined it should just work.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.