SAS DS2 数据步骤可以创建视图吗?
Can a SAS DS2 data step create a view?
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
但是,Enterprise Guide 中的 intellisense 建议 view=
作为 /
之后的选项。
是我出错了还是智能感知错误?
编辑器无法区分 DS2 DATA 语句和 BASE SAS DATA 语句。毕竟它只是一个编辑器,而不是一个真正的编译器。
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
但是,Enterprise Guide 中的 intellisense 建议 view=
作为 /
之后的选项。
是我出错了还是智能感知错误?
编辑器无法区分 DS2 DATA 语句和 BASE SAS DATA 语句。毕竟它只是一个编辑器,而不是一个真正的编译器。