<?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: Issue w/ AAA*.TMP files blowing disk space in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918716#M108976</link>
    <description>If the application requires multi-Gb files then you have two choices: buy (a lot) more disk, or rewrite the application. Multi-Gb temp files seems a bit odd and must require a very long time to create. So if multiple users issue similar requests, you had better look at getting dozens (hundreds?) of Gb more disk space.&lt;BR /&gt;&lt;BR /&gt;This is not a memory issue, it is plain old disk space, so changing memory around won't help. (one exception is for very large SGA in Oracle but you'll need another 9Gb of RAM and Oracle (and related apps) must run in 64bit mode) I'd ask the DBA's and developers to look carefully at the indexes and if nothing can be done to improve the code, get a purchase order for a bunch of disk space.</description>
    <pubDate>Tue, 04 Mar 2003 20:09:23 GMT</pubDate>
    <dc:creator>Bill Hassell</dc:creator>
    <dc:date>2003-03-04T20:09:23Z</dc:date>
    <item>
      <title>Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918708#M108968</link>
      <description>I have an L3000 running 11i which is a middle tier server housing our new oracle 6i forms application - via a netscape url the user connects to forms on this middle tier and then these forms access an N class server housing the back-end oracle databases and application/batch programs and code.  (pls don't ask why we opted for this middle tier approach)&lt;BR /&gt;&lt;BR /&gt;The problem is this: extremely large temp files (AAA*.TMP) get created on disk (/tmp or /var/tmp) when a user executes a large or global sql query on a large table.  This temp file gets created about 4-5 minutes into the query and continues to grow until it gobbles up the entire 1gb of space I have available on /tmp; when disk capacity is reached the form returns to the user presenting the rows of data that it was able to successfully fetch and it produces an error "FRM-40900: Unable to allocate record buffer".   Forms buffers a number of records per block in memory and then when this area is full buffers it to disk; which is why the temp file isn't created immediately.  &lt;BR /&gt;&lt;BR /&gt;I clean out this directory every night, but am still running into the issue during the day.  My DBA has a TAR open with Oracle, but isn't expecting much back.  My forms developers are trying to block global queries, but large queries are producing the same results so I am trying to find a solution.  I tried increasing dbc_max_pct from 20 to 50 but this doesn't seem to make a difference.  I have 3gb of memory on the system, but am low on free disk space so am unable to allocate any more to /tmp for these files.  &lt;BR /&gt;&lt;BR /&gt;Any ideas as to how to handle/manage/solve this problem??</description>
      <pubDate>Tue, 04 Mar 2003 16:54:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918708#M108968</guid>
      <dc:creator>Michelle Weiss</dc:creator>
      <dc:date>2003-03-04T16:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918709#M108969</link>
      <description>Hi Michelle:&lt;BR /&gt;&lt;BR /&gt;You might try setting the TMPDIR variable to a filesystem name that you dedicate to temporary files.  Try seting and exporting TMPDIR during Oracle's startup.  The effect will be to create temporary files in the filesystem of your choice rather than '/var/tmp' or '/tmp'.  See the man pages for 'mktemp(1)' for more information.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 04 Mar 2003 17:49:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918709#M108969</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-03-04T17:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918710#M108970</link>
      <description>Thank you for the feedback, if I had extra disk space available that would be a viable option, unfortunately the 1gb on /tmp is all I can do...</description>
      <pubDate>Tue, 04 Mar 2003 18:25:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918710#M108970</guid>
      <dc:creator>Michelle Weiss</dc:creator>
      <dc:date>2003-03-04T18:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918711#M108971</link>
      <description>Check the startup script reports60_server&lt;BR /&gt;&lt;BR /&gt;You can relocate cache and temporary files from /tmp to mounted filesystems.&lt;BR /&gt;&lt;BR /&gt;Check this line.&lt;BR /&gt;&lt;BR /&gt;REPORTS60_WEBLOC=/webcache; export REPORTS60_WEBLOC&lt;BR /&gt;&lt;BR /&gt;Consider reolocategn it to a mounted fs with more space.&lt;BR /&gt;&lt;BR /&gt;If your report is triggered by say a button in forms, check the forms60_server script for location of temporary files.&lt;BR /&gt;&lt;BR /&gt;Oracle likes to store temporary output to disk, and you really need to have a place for that.&lt;BR /&gt;&lt;BR /&gt;If the database is running on the same box(I think you said no) you might want to look at init.ora for the database and check where that's going. As far as database goes, I'd wonder about how big the rollback space is, redo segments and such.&lt;BR /&gt;&lt;BR /&gt;If its reports server and the database is not on the same box, then it could be the building blocks for the reports output file. &lt;BR /&gt;&lt;BR /&gt;There is a variable in forms/reports pointing to where pdf files get created.  That needs to have plenty of free space. &lt;BR /&gt;&lt;BR /&gt;If its the sql query doing this then its time to check the queries for efficiency.  No matter how much disk space you have bad queries can kill you.&lt;BR /&gt;&lt;BR /&gt;I found one of these files on my system and here were the permissions.&lt;BR /&gt;-rw-r--r--   1 ias        oinstall     72768 Jan 15 09:29 /var/tmp/AAAa00980.TMP&lt;BR /&gt;&lt;BR /&gt;ias really doesn't do a lot of sql work.  The backend sql work is on the database server as are temporary files, redo,rollback segments and archive logs.&lt;BR /&gt;&lt;BR /&gt;Our server is pretty heavily used and the user ias is not the database owner(that would be oracle).  In our setup, the database server runs on the same box as ias.&lt;BR /&gt;&lt;BR /&gt;The obvious question from me,(Mr. Patch) is do you have the latest forms/reports patch installed?  They are on Patch Level 13, I'm currently getting 12 rolled out.&lt;BR /&gt;&lt;BR /&gt;SEP&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Mar 2003 18:43:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918711#M108971</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2003-03-04T18:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918712#M108972</link>
      <description>Michelle,&lt;BR /&gt;&lt;BR /&gt;On some other filesystem, do you have space?  Even on a filesystem that Oracle uses...that, I believe is what JRF is referring to.  &lt;BR /&gt;&lt;BR /&gt;In Oracle's 'config.ora' the DBA has set /tmp as the TMPDIR.  This can be set to any other filesystem that has some room.   &lt;BR /&gt;By doing this, you keep your vg00 filesystems from hitting 100%...and creating problems for everyone.&lt;BR /&gt;&lt;BR /&gt;If you don't have any other place to set Oracle's TMPDIR to, than you are in desperate need of ordering some diskspace.&lt;BR /&gt;&lt;BR /&gt;Just a thought,&lt;BR /&gt;Rita&lt;BR /&gt;</description>
      <pubDate>Tue, 04 Mar 2003 19:01:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918712#M108972</guid>
      <dc:creator>Rita C Workman</dc:creator>
      <dc:date>2003-03-04T19:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918713#M108973</link>
      <description>I guess I'm just not sure how much is enough - - - 1gb certainly seems to me to be more than enough for temp files.  How much can they possibly expect me to allocate for this??</description>
      <pubDate>Tue, 04 Mar 2003 19:16:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918713#M108973</guid>
      <dc:creator>Michelle Weiss</dc:creator>
      <dc:date>2003-03-04T19:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918714#M108974</link>
      <description>Hi (again) Michele [and Rita]:&lt;BR /&gt;&lt;BR /&gt;Yes, Rita is correct.  Since it appears that you cannot extend '/tmp', my next choice would be to look for enough physical space on another volumd group to compose a dedicated logical volume (filesystem) for these temporary files.  In the absence of that, Rita's point is well-taken, you could use any filesystem with enough space.&lt;BR /&gt;&lt;BR /&gt;Regards!&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Tue, 04 Mar 2003 19:40:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918714#M108974</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2003-03-04T19:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918715#M108975</link>
      <description>With 18GB drives available on the used market for well under $500, you could easily remedy this situation.  Take up a collection, start a raffle, something.  You could even go so far as to beg accounting to cough up $500.&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Tue, 04 Mar 2003 19:57:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918715#M108975</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-03-04T19:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Issue w/ AAA*.TMP files blowing disk space</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918716#M108976</link>
      <description>If the application requires multi-Gb files then you have two choices: buy (a lot) more disk, or rewrite the application. Multi-Gb temp files seems a bit odd and must require a very long time to create. So if multiple users issue similar requests, you had better look at getting dozens (hundreds?) of Gb more disk space.&lt;BR /&gt;&lt;BR /&gt;This is not a memory issue, it is plain old disk space, so changing memory around won't help. (one exception is for very large SGA in Oracle but you'll need another 9Gb of RAM and Oracle (and related apps) must run in 64bit mode) I'd ask the DBA's and developers to look carefully at the indexes and if nothing can be done to improve the code, get a purchase order for a bunch of disk space.</description>
      <pubDate>Tue, 04 Mar 2003 20:09:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/issue-w-aaa-tmp-files-blowing-disk-space/m-p/2918716#M108976</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2003-03-04T20:09:23Z</dc:date>
    </item>
  </channel>
</rss>

