See log below. I am running out of space within the work library. Is there a way to change the default work library to a different drive with more memory? I found this comment regarding a similar issue, but I was not sure if this would work for my issues: If SAS is installed on your pc go to the installation folder (c:\program files\sas\sas 9.1) and open the file "sasv9.cfg". Find the line starting with -WORK and edit it. EXCERPT FROM LOG 1356 proc sql ; 1357 create table service_codes_sum (index = (key = (bene_id claim_no_grp claim_number )) 1357 ! ) as 1358 select 1359 bene_id, from_dt, claim_no_grp, claim_number, file_type, 1360 code_type, code_loc, code_value, poa_value, mdfr_cd1, mdfr_cd2, rev_cntr, apcpps, 1360 ! code_pckgind, 1361 sum(code_amt) as code_amt, 1362 sum(code_units) as code_units 1363 from 1364 service_codes 1365 group by 1366 bene_id, from_dt, claim_no_grp, claim_number, file_type, 1367 code_type, code_loc, code_value, poa_value, mdfr_cd1, mdfr_cd2, rev_cntr, apcpps, 1367 ! code_pckgind ; ERROR: Insufficient space in file WORK.'SASTMP-000000102'n.UTILITY. ERROR: File WORK.'SASTMP-000000102'n.UTILITY is damaged. I/O processing did not complete. NOTE: PROC SQL set option NOEXEC and will continue to check the syntax of statements. 1368 quit ; NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE SQL used (Total process time): real time 2:20:53.07 cpu time 28:33.98
... View more