<?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: Sorting in relational databases in Operating System - OpenVMS</title>
    <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382241#M3720</link>
    <description>Gerard,&lt;BR /&gt;&lt;BR /&gt;But RDB isn't an real Oracle product and is only running on ex-DEC. But good to know anyway ...&lt;BR /&gt;&lt;BR /&gt;Wim</description>
    <pubDate>Mon, 20 Sep 2004 07:34:22 GMT</pubDate>
    <dc:creator>Wim Van den Wyngaert</dc:creator>
    <dc:date>2004-09-20T07:34:22Z</dc:date>
    <item>
      <title>Sorting in relational databases</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382239#M3718</link>
      <description>We have an application that does selects and joins on very big tables (at least 1 milion entries each). And is using order by.&lt;BR /&gt;&lt;BR /&gt;Does anyone know which sort algorithm is used by the databases (e.g. Sybase / Oracle) ? Is it the VMS sort (I don't think so) ? Link to doc ?&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 20 Sep 2004 07:02:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382239#M3718</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-09-20T07:02:58Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting in relational databases</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382240#M3719</link>
      <description>Rdb uses a copy of the VMS sort, modified because it must run in exec mode.&lt;BR /&gt;&lt;BR /&gt;Other tools such as RMU/LOAD uses directly the Vms sort.&lt;BR /&gt;&lt;BR /&gt;For Ingres or others, I do not know.</description>
      <pubDate>Mon, 20 Sep 2004 07:20:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382240#M3719</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-09-20T07:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting in relational databases</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382241#M3720</link>
      <description>Gerard,&lt;BR /&gt;&lt;BR /&gt;But RDB isn't an real Oracle product and is only running on ex-DEC. But good to know anyway ...&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 20 Sep 2004 07:34:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382241#M3720</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-09-20T07:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting in relational databases</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382242#M3721</link>
      <description>Wim wrote&lt;BR /&gt;But RDB isn't an real Oracle product.&lt;BR /&gt;&lt;BR /&gt;This reminds me of what says a guy at Rdb engineering: "Oracle, the other product of the company :-)"</description>
      <pubDate>Mon, 20 Sep 2004 07:38:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382242#M3721</guid>
      <dc:creator>labadie_1</dc:creator>
      <dc:date>2004-09-20T07:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting in relational databases</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382243#M3722</link>
      <description>If the good ones always won, we wouldn't be using Windows but Apples.&lt;BR /&gt;&lt;BR /&gt;I worked with RDB for 2 months in a time that we didn't yet know what a relational database was (1987).&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 20 Sep 2004 07:48:10 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382243#M3722</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-09-20T07:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting in relational databases</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382244#M3723</link>
      <description>First question: if the select executed on indexed fields? If not search will be done throughout the whole table, which has a major impact on performance! Indexes should be not too fragmented since that would trigger a full tabel scan as well (by experience) - even if there is an index on the attribute.....&lt;BR /&gt;&lt;BR /&gt;Sorting will indeed likely NOT be done using VMS sort. I consulted a collegue with Sybase knowledge and he told me it may depend on a parameter (generic or SORT related) to instruct RDBMS to use memory or temporary tables. In the first case, the OS will take care of paging, in the latter data will be written into the database.&lt;BR /&gt;For Oracle, give the document on performence (&lt;A href="http://www.oracle.com/technology/products/bi/pdf/o9i_optimization_twp.pdf)" target="_blank"&gt;http://www.oracle.com/technology/products/bi/pdf/o9i_optimization_twp.pdf)&lt;/A&gt; memory will be allocated and used - where the OS will take care of paging as well. You'll see it in the pagefault rate of the main Oracle process - or one of it's subprocesses.&lt;BR /&gt;I know, for Oracle, that there are quite a number of measures to be taken in database design (DB pagesize, for instance) and configuration to improve performance. Part is DBA's job....&lt;BR /&gt;&lt;BR /&gt;Willem&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Sep 2004 07:52:29 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382244#M3723</guid>
      <dc:creator>Willem Grooters</dc:creator>
      <dc:date>2004-09-20T07:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: Sorting in relational databases</title>
      <link>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382245#M3724</link>
      <description>Willem,&lt;BR /&gt;&lt;BR /&gt;It is &lt;A href="http://www.oracle.com/technology/products/bi/pdf/o9i_optimization_twp.pdf" target="_blank"&gt;http://www.oracle.com/technology/products/bi/pdf/o9i_optimization_twp.pdf&lt;/A&gt; ?&lt;BR /&gt;&lt;BR /&gt;Wim</description>
      <pubDate>Mon, 20 Sep 2004 08:00:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-openvms/sorting-in-relational-databases/m-p/3382245#M3724</guid>
      <dc:creator>Wim Van den Wyngaert</dc:creator>
      <dc:date>2004-09-20T08:00:05Z</dc:date>
    </item>
  </channel>
</rss>

