Wednesday, September 8, 2010

Append & Force

-
The procedure append is recommended when the dataset is being overwritten. This helps the user concatenate large number of datasets.
-
Syntax:
-
proc append base=SASHELP.dummy data=WORK.dummy force;
run;
-
The force option displayed here is used to forcibly append the dataset (while encountering differing attributes for the same variable).
-

No comments:

Post a Comment