标题: How to delete all the labels in SAS files? [打印本页] 作者: shiyiming 时间: 2007-1-23 10:50 标题: How to delete all the labels in SAS files? i get the SAS datasets from oracle, for some reasons, i need to delete all the labels of each SAS table.
is there any each way to do it?
Thanks作者: shiyiming 时间: 2007-1-23 11:13 标题: find one solution :D [code:59aca]/* Remove all the labels and formats */
proc datasets lib=work;
modify test; /* modify data set test */
attrib _all_ label=' '; /* will remove all labels */
attrib _all_ format=; /* will remove all formats */
run;
contents; /* view the contents after removal */
run;
quit;[/code:59aca]作者: shiyiming 时间: 2007-1-24 13:25 标题: 自问自答? 自问自答?作者: shiyiming 时间: 2007-1-24 22:40 标题: data i found one solution after i posted it.