<?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 /tmp Storage used for joining and sorting in SAS Data Management</title>
    <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673064#M19449</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Few of my jobs are getting failed due to insufficient storage, my work file location having sufficient space. /tmp/ getting utilised by job for sorting and joining.&amp;nbsp;&lt;/P&gt;&lt;P&gt;my question is can we change the location of this sorting and joining location permentalty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;-shrikant Suvarnkar&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jul 2020 09:12:06 GMT</pubDate>
    <dc:creator>shrikantpwc</dc:creator>
    <dc:date>2020-07-29T09:12:06Z</dc:date>
    <item>
      <title>/tmp Storage used for joining and sorting</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673064#M19449</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Few of my jobs are getting failed due to insufficient storage, my work file location having sufficient space. /tmp/ getting utilised by job for sorting and joining.&amp;nbsp;&lt;/P&gt;&lt;P&gt;my question is can we change the location of this sorting and joining location permentalty.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;-shrikant Suvarnkar&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 09:12:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673064#M19449</guid>
      <dc:creator>shrikantpwc</dc:creator>
      <dc:date>2020-07-29T09:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: /tmp Storage used for joining and sorting</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673065#M19450</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you could use the USER library idea:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;libname USER ("%sysfunc(pathname(work))" "/temp/");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;It allow you to write codes like:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data OUTPUT;
  set sashelp.class;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;and the OUTPUT dataset will be stored in the USER library, so you don't have to change your code to much if you' were using "single name dataset"(i.e. without work. before dataset name)&amp;nbsp; to store data in WORK.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you have to remember that &lt;STRONG&gt;you have to clean USER up yourself&lt;/STRONG&gt; after SAS session ends.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;All the best&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 09:20:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673065#M19450</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2020-07-29T09:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: /tmp Storage used for joining and sorting</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673066#M19451</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can we perform this in SAS DI. By default Sort and join operation area is /tmp, and I want it to change to any other directory location.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 09:25:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673066#M19451</guid>
      <dc:creator>shrikantpwc</dc:creator>
      <dc:date>2020-07-29T09:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: /tmp Storage used for joining and sorting</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673067#M19452</link>
      <description>&lt;P&gt;Other approach would be to change the&amp;nbsp;UTILLOC= System Option, see:&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=lesysoptsref&amp;amp;docsetTarget=p1texr4rxo0ipyn1ovajj11raccx.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en"&gt;https://documentation.sas.com/?docsetId=lesysoptsref&amp;amp;docsetTarget=p1texr4rxo0ipyn1ovajj11raccx.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it is&amp;nbsp;Configuration file/SAS invocation option so&lt;/P&gt;
&lt;P&gt;&amp;nbsp;-you will need admin help if you work with EG or&lt;/P&gt;
&lt;P&gt;&amp;nbsp;-if you could work with command line interface you could do it yourself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bart&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 09:26:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673067#M19452</guid>
      <dc:creator>yabwon</dc:creator>
      <dc:date>2020-07-29T09:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: /tmp Storage used for joining and sorting</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673085#M19453</link>
      <description>&lt;P&gt;The default setting for the WORK library on Linux is /tmp. You can double check that setting by running the following statement in Code Editor from within SAS Data Integration Studio. Tools --&amp;gt; Code Editor&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put %sysfunc(pathname(work));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The result will be placed in the log tab.&lt;/P&gt;
&lt;P&gt;To get around this issue, there are few options&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Ask your SAS Administrator to redirect/change the -WORK setting to point to a different more sizable directory/file-system, by modifying the &amp;lt;SASHome&amp;gt;/SASFoundation/9.4/sasv9_local.cfg file&lt;/LI&gt;
&lt;LI&gt;Create your own custom sasv9.cfg file and save it in your own $HOME directory on the Linux Compute Server(s)&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;Ahmed&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 11:12:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673085#M19453</guid>
      <dc:creator>AhmedAl_Attar</dc:creator>
      <dc:date>2020-07-29T11:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: /tmp Storage used for joining and sorting</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673152#M19454</link>
      <description>&lt;P&gt;You need to set UTILLOC in the sasv9_usermods.cfg file of the server context that DI uses (e.g. in the SASApp directory, not in SASApp/WorkspaceServer).&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 14:38:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673152#M19454</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-07-29T14:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: /tmp Storage used for joining and sorting</title>
      <link>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673170#M19455</link>
      <description>&lt;P&gt;SAS DI is meant to be a managed environment for running production jobs. If you're having storage issues, you should discuss it with your SAS administrators to ensure changes are made to the environment to prevent these problems from happening.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tom&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 15:13:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Management/tmp-Storage-used-for-joining-and-sorting/m-p/673170#M19455</guid>
      <dc:creator>TomKari</dc:creator>
      <dc:date>2020-07-29T15:13:53Z</dc:date>
    </item>
  </channel>
</rss>

