문제

I am trying to append a dataset with different variables to base dataset with FORCE option. However everytime the loop iterates, it adds observations but is not adding the variable from the new dataset. Any suggestions?

도움이 되었습니까?

해결책

PROC APPEND, even with FORCE options does not add VARIABLES, just RECORDS (observations). FORCE enables append if source table does not contain some of variables in target table, but does not add variables from source table if they do not exist in target.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top