We have multiple large SAS datasets that we are trying to append to one large table. I've set up the code to look like this:
data XXX.Appendee;
set XXX.Appending1;
run;
proc append base = XXX.Appendent data=XXX.Appending2;
run;
proc append base = XXX.Appendent data=XXX.Appending3;
run;
However, I keep getting the error message :
"Error: The file XXX.Appendee.DATA is shorter than expected."
I am running this code on a desktop version of SAS. Also it only seems to occur when the data set being appended to is on our network and if I run each statement individually most of the time this error will not occur. It seems to occur on the third statement most of the time, the first file that is being appended normally goes through. Any help would be greatly appreciated.
data XXX.Appendee;
set XXX.Appending1;
run;
proc append base = XXX.Appendent data=XXX.Appending2;
run;
proc append base = XXX.Appendent data=XXX.Appending3;
run;
However, I keep getting the error message :
"Error: The file XXX.Appendee.DATA is shorter than expected."
I am running this code on a desktop version of SAS. Also it only seems to occur when the data set being appended to is on our network and if I run each statement individually most of the time this error will not occur. It seems to occur on the third statement most of the time, the first file that is being appended normally goes through. Any help would be greatly appreciated.