%if %sysfunc(exist(working.__extra_nos__)) %then %do;
proc export data=working.__extra_nos__
dbms=oracle replace;
password="&password.";
tablename="sch.no_selection_&env_type.";
url="&dburl.";
username="&user.";
run;
sch.no_selection_&env_type には identifier という列もありますが、これは含まれていない__extra_nos__
ので、エクスポートするときに &identifier に設定したいと思います。
これどうやってするの?