Hello, Current configuration: SAS Viya version: 3.5 SAS Viya is installed on Linux Python version 3.7.9 Python SWAT version 1.9.0 Supposing that we have two libraries defined in SAS VIYA, one CAS and one not CAS. Would anybody know if is possible to upload a table from the non CAS library to the CAS library by using Python SWAT? The equivalent process in SAS Studio would be: proc casutil; load data=NON_CAS_LIB.tablename outcaslib="CAS_LIB" casout="targetTableName"; run; Can this be done in SWAT? After creating the SWAT connection I have tried using load_path like below but it didn't work. test=conn.load_path('NON_CAS_LIB/Table_A', caslib='CAS_LIB') Thank you, Madalin
... View more