Hello, Is there a way to change the SASLIBREF of multiple metadata registered sasdata sets at once? or Change the data server and DBMS of an existing Library in sas metadata. Existing library is impala and intended target library to which all existing tables be allocated is snowflake Thanks ir0nxl Solution I used: Delete the exiting impala Library (say with the libref 'implib') in the target environment (say Test) under which all the tables are registered. create a new SNOWFLAKE library with the same libref 'implib' in the target environment (TEST) Export all the table from source environment (Dev) to Test. SAS metadata engine is smart enough to the pick up the target library(newly created Snowflake library) with the same name 'implib'. Then programmatically uppercase ( which is required for SNOWFLAKE) the PhysicalName/Name of all tables using metadata_setattr() function. Finally Update metadata of tables selecting them all and updating manually (or programmatically if preferred).
... View more