<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: proc sql question in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389578#M25142</link>
    <description>&lt;P&gt;I am helping out a co-worker that has created a complex file. The program errors out with an&lt;/P&gt;&lt;P&gt;"ERROR: Insufficient space in file WORK.'SASTMP-000000042'n.UTILITY.&lt;BR /&gt;ERROR: File WORK.'SASTMP-000000042'n.UTILITY is damaged. I/O processing did not complete.&lt;BR /&gt;NOTE: Error was encountered during utility-file processing. You may be able to execute the SQL&lt;BR /&gt;statement successfully if you allocate more space to the WORK library.&lt;BR /&gt;ERROR: There is not enough WORK disk space to store the results of an internal sorting phase."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have contacted SAS support who has provided several suggestions of which none resolved the issue. I thought maybe something was incorrect in the code that could be causing this error.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 21 Aug 2017 16:43:34 GMT</pubDate>
    <dc:creator>hargravs</dc:creator>
    <dc:date>2017-08-21T16:43:34Z</dc:date>
    <item>
      <title>proc sql question</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389568#M25140</link>
      <description>&lt;P&gt;Please assist by reviewing the code below. Table is not being created.&lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;create table VERA_114 as&lt;BR /&gt;select a.*, b.gender, b.age, b.race, b.mental_health_need, b.developmental_disability&lt;BR /&gt;from VERA_113 as a left join popdemog.inmate_daily_count as b on&lt;BR /&gt;a.record_key = b.record_key and a.inmate_daily_count_date = b.inmate_daily_count_date&lt;BR /&gt;order by a.record_key;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2017 16:03:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389568#M25140</guid>
      <dc:creator>hargravs</dc:creator>
      <dc:date>2017-08-21T16:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql question</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389572#M25141</link>
      <description>&lt;P&gt;There is no information here for debug? &amp;nbsp;"Table not being created" could be anything, is the power on? &amp;nbsp;You need to post full information for us, what does the log say, why is it not being created. &amp;nbsp;Do the tables exist, are the variables in them etc.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2017 16:17:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389572#M25141</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-08-21T16:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql question</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389578#M25142</link>
      <description>&lt;P&gt;I am helping out a co-worker that has created a complex file. The program errors out with an&lt;/P&gt;&lt;P&gt;"ERROR: Insufficient space in file WORK.'SASTMP-000000042'n.UTILITY.&lt;BR /&gt;ERROR: File WORK.'SASTMP-000000042'n.UTILITY is damaged. I/O processing did not complete.&lt;BR /&gt;NOTE: Error was encountered during utility-file processing. You may be able to execute the SQL&lt;BR /&gt;statement successfully if you allocate more space to the WORK library.&lt;BR /&gt;ERROR: There is not enough WORK disk space to store the results of an internal sorting phase."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have contacted SAS support who has provided several suggestions of which none resolved the issue. I thought maybe something was incorrect in the code that could be causing this error.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2017 16:43:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389578#M25142</guid>
      <dc:creator>hargravs</dc:creator>
      <dc:date>2017-08-21T16:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql question</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389580#M25143</link>
      <description>&lt;P&gt;Would it be more helpful if i attached the file?&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2017 16:46:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389580#M25143</guid>
      <dc:creator>hargravs</dc:creator>
      <dc:date>2017-08-21T16:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql question</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389587#M25144</link>
      <description>&lt;P&gt;I think&lt;/P&gt;
&lt;P&gt;"ERROR: Insufficient space in file WORK.'SASTMP-000000042'n.UTILITY.&lt;/P&gt;
&lt;P&gt;"ERROR: There is not enough WORK disk space to store the results of an internal sorting phase."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Should be relatively clear. The attempted program is trying to use more memory and/or disk space than allowed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this is a server job, which seems likely, you may want to talk to your SAS admin about increasing space allocation.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Aug 2017 17:13:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389587#M25144</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-08-21T17:13:23Z</dc:date>
    </item>
    <item>
      <title>Re: proc sql question</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389590#M25146</link>
      <description>thank you&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Aug 2017 17:27:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/proc-sql-question/m-p/389590#M25146</guid>
      <dc:creator>hargravs</dc:creator>
      <dc:date>2017-08-21T17:27:44Z</dc:date>
    </item>
  </channel>
</rss>

