Hi, i'm trying to perform oversampling on SAS Studio. Before performing the oversampling, I have create cas session to connect with the libraries, here is the code. cas casauto host="example.host" port=5570;
proc cas;
session casauto;
session.sessionstatus result=s;
put s;
run;
CASLIB _ALL_ assign;
options casdatalimit=50G; After that, i performed the oversampling and it worked just fine without any errors. As you can see the output table is already listed on the public library. But when I tried to look for the table from SAS VA or Environment Manager the table doesn't appear. This issue also happened before when I ran a query file, the output table is listed on the library in SAS Studio but I couldn't find the table when I tried to add the data to SAS VA. Did I miss anything?
... View more