Hi @OmniDIYer and welcome to the SAS Support Communities!
So, you're coming from SAS 6.12? Great. I liked that version.
There is no need for "moving data tables." Simply use a LIBNAME statement:
libname pg1 (pg1 '/home/myuserid/EPG194/data');
This creates a concatenated library which consists of the existing pg1 library and the folder where np_summary.sas7bdat resides.
Thus you can refer to this dataset as pg1.np_summary and still access the datasets in the "old" pg1 library as before. When you create a new dataset in this library, it is created in the folder which was previously alone associated with libref pg1, i.e., there's no change in this regard either.
... View more