是否存在 SAS 系统选项、配置参数或其他可能禁止在 fileref 中使用通配符的方案?以下代码有效:
FILENAME THEFILE "/sasrep/POC/UNGMPW.PRO" ;
data _null_;
infile thefile;
input;
run;
而下面的代码:
FILENAME THEFILE "/sasrep/POC/UNGMP?.PRO" ;
data _null_;
infile thefile;
input;
run;
生成此错误消息:
ERROR: Insufficient authorization to access /sasrep/POC/UNGMP?.PRO.
这是在 UNIX 上使用 SAS 9.1.3。