Proc DS2;
data Iris_v / view= Iris_v;
method run();
set Iris;
end;
run; quit;
结果
ERROR: Compilation error.
ERROR: BASE driver, unknown option
ERROR: BASE driver, Table IRIS_V does not exist or cannot be accessed or created
ERROR: Unable to execute CREATE TABLE statement for table work.Iris_v.
NOTE: PROC DS2 has set option NOEXEC and will continue to prepare statement
但是,企业指南中的智能感知会在view=
之后建议/
作为选项。
我是犯了错误还是智能错误?
答案 0 :(得分:0)
编辑器无法区分DS2 DATA语句和BASE SAS DATA语句。毕竟它只是一个编辑器,而不是一个真正的编译器。