It doesn't look like the Base library is there anymore:
proc options option=fmtsearch; run;
SAS (r) Proprietary Software Release 9.4 TS1M6
FMTSEARCH=(WORK LIBRARY)
Specifies the order in which format catalogs are searched.
NOTE: PROCEDURE OPTIONS used (Total process time):
real time 0.03 seconds
cpu time 0.01 seconds
But when I tried to use the code you suggested to add it back in, I got an error. I tried it another way, but that didn't work either.
194 options append(fmtsearch=base);
----------------------
13
ERROR 13-12: Unrecognized SAS option name APPEND(FMTSEARCH=BASE).
195 proc options append(fmtsearch=base);
------
22
76
ERROR 22-322: Syntax error, expecting one of the following: ;, ADB, APF, DB2, DDB, DEFINE, EXPAND, GETRESTRICT, GROUP, HELP, HEXVALUE,
HOST, IDM, IMS, ISP, LISTGROUPS, LISTINSERTAPPEND, LISTOPTSAVE, LISTRESTRICT, LOGNUMBERFORMAT, LONG, NOEXPAND,
NOLOGNUMBERFORMAT, OPTION, PORTABLE, PWDBLOTOFF, RESTRICT, SHORT, SHOWCHAINS, VALUE.
ERROR 76-322: Syntax error, statement will be ignored.
196 run;
... View more