It is hard to trouble shoot DI jobs without access to the DI job itself.
But it seems you haven't gone through the whole log yourself?
If a job work sometimes, consider it not to function. You might have a libnme assignment too late in the code, and the second time it works, but not the first.
But, check all the errors in the log and try to fix them one by one.
ERROR: Libref RPTKDC19 is not assigned.
ERROR: SQL View WORK.W1MN90FN could not be processed because at least one of the data sets, or views, referenced directly (or
indirectly) by it could not be located, or opened successfully.
How is this libname (not) assigned, perhaps it's defined as pre-assigned by external configuration, and now this is not done?
LIBNAME report ORACLE PATH=REPOR SCHEMA=tbaadm AUTHDOMAIN="tes" ; %rcSet(&syslibrc); proc
_____
1
61 The SAS System 13:09 Friday, July 18, 2025
3278 ! sql NOPRINT; select count(1) ods_land.ERROR_TEST; %rcSet(&sqlrc); run;
ERROR: Specified AuthenticationDomain not found in foundation repository.
Misspelling? Or are you running the job in another environment where "tes" authdomain doesn't exist?
... View more