标题: 程序错误提示, 请帮我看下 [打印本页] 作者: shiyiming 时间: 2010-5-10 22:01 标题: 程序错误提示, 请帮我看下 在朋友的电脑里可以运行,我的电脑就出现这个错误提示,怎么回事
324 proc sql;
325 create table sql as
326 select ab,count(ab) as cnt
327 from a
328 group by ab;
ERROR: Utility file open failed.
NOTE: Table WORK.SQL created, with 0 rows and 2 columns.作者: shiyiming 时间: 2010-5-11 08:50 标题: Re: 程序错误提示, 请帮我看下 [color=#BF4000:1r08zc4n][b:1r08zc4n]
没有报错啊。。。。
Data exp;
Input ab $ @@;
Cards;
x i d s j a
;
run;
proc sql;
create table sql as
select ab,count(ab) as cnt
from exp
group by ab;
quit;[/b:1r08zc4n][/color:1r08zc4n]作者: shiyiming 时间: 2010-5-11 20:39 标题: Re: 程序错误提示, 请帮我看下 你的文件太大,work盘地方不够了吧?
If you get the following error in SAS 9.1.3 and above, you may need to increase your space allocation for UTILLOC or you may need to increase your REGION parameter. If you specified UTILLOC=WORK, you need to increase your work space allocation. If you specified the location of temporary utility files with the UTILLOC option, you will need to increase the space in your UTILLOC allocation. You only need to code REGION on your job card.作者: shiyiming 时间: 2010-5-11 20:58 标题: Re: 程序错误提示, 请帮我看下 文件不是很大,那怎么办?原文件txt, 1000k