Print the data sets. Since two output objects have the same name (ModelANOVA), the SASEDOC LIBNAME engine recognizes only the second table, because it was created more recently than the first table. The DOC_SEQNO= data set option specifies a sequence number of 1 in order to access the first table .


proc print data=mylib.modelanova;
run;
proc print data=mylib.modelanova(doc_seqno=1);
run;