Hi,
EG doesn't allow to create a dataset if it's already registered in metadata ,
like sorting a dataset , updating via a datastep , merging via a datastep , but it does allow it in other cases like a proc sql create table .
In some cases there is a simple workaround by first deleting it , but that's not an option for a sort ... There I would need to sort it to a work table , delete or empty the table and then append the work table ....
Is there an option to force this to be allowed ?
thx,
Wim
/* example log */
11 proc sort data=source.flatfiles;
12 by nbr_obs;
13 run;
ERROR: The member name SOURCE.FLATFILES already exists in metadata.
NOTE: The SAS System stopped processing this step because of errors.
NOTE: PROCEDURE SORT used (Total process time):
real time 0.07 seconds
cpu time 0.00 seconds
/* end log */
... View more