<?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 error code 567 Cannot write sorted rows in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780281#M832516</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;When ever I try to use a order by clause on my sql statement by using the jdbc driver for informix I get the sql error -567: cannot write sorted rows.&lt;BR /&gt;&lt;BR /&gt;I checked out the details about this error and it say that there is an internal conflict which prevents informix from sorting the rows.&lt;BR /&gt;&lt;BR /&gt;What is wrong?&lt;BR /&gt;How can I solve this?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Stefaan&lt;BR /&gt;</description>
    <pubDate>Tue, 06 Aug 2002 06:21:33 GMT</pubDate>
    <dc:creator>Stefaan Delanghe</dc:creator>
    <dc:date>2002-08-06T06:21:33Z</dc:date>
    <item>
      <title>error code 567 Cannot write sorted rows</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780281#M832516</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;When ever I try to use a order by clause on my sql statement by using the jdbc driver for informix I get the sql error -567: cannot write sorted rows.&lt;BR /&gt;&lt;BR /&gt;I checked out the details about this error and it say that there is an internal conflict which prevents informix from sorting the rows.&lt;BR /&gt;&lt;BR /&gt;What is wrong?&lt;BR /&gt;How can I solve this?&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Stefaan&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Aug 2002 06:21:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780281#M832516</guid>
      <dc:creator>Stefaan Delanghe</dc:creator>
      <dc:date>2002-08-06T06:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: error code 567 Cannot write sorted rows</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780282#M832517</link>
      <description>using the order by clause informix has to sort the rows but cannot.&lt;BR /&gt;&lt;BR /&gt;Sorting is done in temporary dbspaces and it seems your tmpdbs has not enough space.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Look for the ONCONFIG variable TMPDBS and check the available space in this dbspace using onstat -d.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You could also specify a regular directory for your sorts by specifying the environemnet variable PSORT_DBTEMP&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Rainer&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Aug 2002 06:51:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780282#M832517</guid>
      <dc:creator>Rainer von Bongartz</dc:creator>
      <dc:date>2002-08-06T06:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: error code 567 Cannot write sorted rows</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780283#M832518</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Thanks for your response. But I am a bit confused how to get this done.&lt;BR /&gt;&lt;BR /&gt;I'm new to informix and still have to find my way with it.&lt;BR /&gt;&lt;BR /&gt;I don't find the tmpdbs I suppose another name is used I think therefore it is the dbspace.&lt;BR /&gt;&lt;BR /&gt;I send you my onconfig file so you can see what the problem is.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;Stefaan&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Aug 2002 07:29:52 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780283#M832518</guid>
      <dc:creator>Stefaan Delanghe</dc:creator>
      <dc:date>2002-08-06T07:29:52Z</dc:date>
    </item>
    <item>
      <title>Re: error code 567 Cannot write sorted rows</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780284#M832519</link>
      <description>Stefaan&lt;BR /&gt;&lt;BR /&gt;read this part of your ONCONFIG&lt;BR /&gt;&lt;BR /&gt;# DBSPACETEMP:&lt;BR /&gt;# Dynamic Server equivalent of DBTEMP for SE. This is the list of dbspaces&lt;BR /&gt;# that the Dynamic Server SQL Engine will use to create temp tables etc.&lt;BR /&gt;# If specified it must be a colon separated list of dbspaces that exist&lt;BR /&gt;# when the Dynamic Server system is brought online.  If not specified, or if&lt;BR /&gt;# all dbspaces specified are invalid, various ad hoc queries will create&lt;BR /&gt;# temporary files in /tmp instead.&lt;BR /&gt;&lt;BR /&gt;DBSPACETEMP   # Default temp dbspaces&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;As your dont have DBSPACETEMP definned it creates sorts in yout /tmp directory.&lt;BR /&gt;&lt;BR /&gt;I guess /tmp is quite full and INFORMIX can't create sortfiles in there.&lt;BR /&gt;&lt;BR /&gt;You could empty your /tmp and try again but you should be aware that sorting in /tmp is not a good idea.(it always tends to grow)&lt;BR /&gt;&lt;BR /&gt;You should create a temporary dbspace using onspaces and set DBSPACETEMP in your ONCONFIG accordingly.&lt;BR /&gt;&lt;BR /&gt;i.e.&lt;BR /&gt;&lt;BR /&gt;onspaces -c -d tmpdbs -t -p &lt;FS or="" raw="" device="" path=""&gt; -o 0 -s &lt;SIZE&gt; &lt;BR /&gt;&lt;BR /&gt;edit onconfig&lt;BR /&gt;DBSPACETEMP   tmpdbs&lt;BR /&gt;&lt;BR /&gt;restart INFORMIX onmode -ky ; oninit&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Rainer&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SIZE&gt;&lt;/FS&gt;</description>
      <pubDate>Tue, 06 Aug 2002 07:54:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/error-code-567-cannot-write-sorted-rows/m-p/2780284#M832519</guid>
      <dc:creator>Rainer von Bongartz</dc:creator>
      <dc:date>2002-08-06T07:54:15Z</dc:date>
    </item>
  </channel>
</rss>

