SAS Proc Export 错误

3

我正在尝试使用SAS中的proc export功能,但一直遇到同样的错误:

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;

1
除了一个提示之外,应该有更多的错误信息。 - Lee
创建XLSX文件时出错 -> 它要么不是Excel电子表格,要么已经损坏。错误代码=8000101D 请求的输出文件无效。 - Eyal Marom
在Google中搜索8000101D,您可以在此处找到解决方案: https://communities.sas.com/t5/SAS-Enterprise-Guide/PROC-Export-to-Excel-is-giving-an-error/td-p/428289 - Lee
谢谢,但我已经做了。 - Eyal Marom
@EyalMarom,我认为您没有在此文件夹中写入的权限。 - Llex
显示剩余4条评论
1个回答

1
你没有在此文件夹中写入的权限。我刚试图设置“拒绝”权限并执行此过程。结果和问题中一样,出现了一个错误和一个提示。
或者当您尝试执行proc export时,Excel文件已经打开

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接