2016-04-23 71 views
0
Proc DS2; 
data Iris_v/view= Iris_v; 
    method run(); 
     set Iris; 
    end; 
run; quit; 

结果SAS DS2数据步骤可以创建视图吗?

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

编辑器无法区分DS2 DATA语句和BASE SAS DATA语句之间的区别。它毕竟只是一个编辑器,而不是一个真正的编译器。

相关问题