sas proc 导出错误
sas proc export errors
我正在尝试在 SAS 中使用 proc 导出,但一直出现相同的错误:
ERROR: Export unsuccessful. See SAS Log for details.
NOTE: The SAS System stopped processing this step because of errors.
Error creating XLSX file -> It is either not an Excel spreadsheet or it is damaged. Error code=8000101D Requested Output File is Invalid
很遗憾,我无法理解错误的含义
PROC EXPORT DATA=work.PANEL_SOFI
OUTFILE= "c:\user\eyal\work.new_panel.xlsx"
DBMS=xlsx REPLACE ;
SHEET="detailed" ;
RUN;
您无权写入此文件夹。我刚刚尝试设置 "Deny" 权限并执行此过程。结果出现了相同的一个错误和相同的一个注释。
或者当您尝试执行 proc export
.
时,excel 文件是 opened
我正在尝试在 SAS 中使用 proc 导出,但一直出现相同的错误:
ERROR: Export unsuccessful. See SAS Log for details.
NOTE: The SAS System stopped processing this step because of errors.
Error creating XLSX file -> It is either not an Excel spreadsheet or it is damaged. Error code=8000101D Requested Output File is Invalid
很遗憾,我无法理解错误的含义
PROC EXPORT DATA=work.PANEL_SOFI
OUTFILE= "c:\user\eyal\work.new_panel.xlsx"
DBMS=xlsx REPLACE ;
SHEET="detailed" ;
RUN;
您无权写入此文件夹。我刚刚尝试设置 "Deny" 权限并执行此过程。结果出现了相同的一个错误和相同的一个注释。
或者当您尝试执行 proc export
.