My code is: options compressed=yes; libname public "path/to/public"; x "gunzip path/to/public/sale_21.sas7bdat.gz"; proc append base=public.sale_21 data=public.new_21 force; run; x "gzip path/to/public/sale_21.sas7bdat"; At the beginning, there are two datasets under public folder: one compressed sale_21.sas7dbat.gz and one uncompressed new_21.sas7bdat I want to uncompressed sale_21 add data from new_21 to the end of sale_21, and then gzip it back. The public folder should still have two datasets. But after I run my program, it create another dataset, now my public folder has three files : one compressed sale_21.sas7bdat.gz and one uncompressed sale_21.sas7bdat and the original new_21.sasbdat. Why it created additional datasets? What should the codes be ?? Thanks SO much!! Any help would be greatly appreciated!
... View more