Within PROC DATASETS, remove all the labels and formats using the MODIFY statement and the ATTRIB option.
proc datasets lib=work memtype=data; modify class; attrib _all_ label=' '; attrib _all_ format=; run;