<?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: Oracle 8.1.7 order by in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758479#M945008</link>
    <description />
    <pubDate>Fri, 05 Jul 2002 13:20:42 GMT</pubDate>
    <dc:creator>Jeanine Kone</dc:creator>
    <dc:date>2002-07-05T13:20:42Z</dc:date>
    <item>
      <title>Oracle 8.1.7 order by</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758477#M945006</link>
      <description>Anybody tell me why Oracle 8.1.7 "order by" sentence sort firts lowercaps and after numbers in a CHAR field?&lt;BR /&gt;&lt;BR /&gt;Please look this:&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; &lt;BR /&gt;  1  select * from jah&lt;BR /&gt;  2* order by campo asc&lt;BR /&gt;&lt;BR /&gt;C&lt;BR /&gt;-&lt;BR /&gt;A&lt;BR /&gt;a&lt;BR /&gt;Z&lt;BR /&gt;z&lt;BR /&gt;1&lt;BR /&gt;7&lt;BR /&gt;9&lt;BR /&gt;&lt;BR /&gt;7 filas seleccionadas.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Regards</description>
      <pubDate>Fri, 05 Jul 2002 12:45:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758477#M945006</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2002-07-05T12:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.1.7 order by</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758478#M945007</link>
      <description>It's got to do with the language setting NLS that you are using.  If you use US7ASCII that won't happen.&lt;BR /&gt;&lt;BR /&gt;select * from test&lt;BR /&gt;order by ca asc&lt;BR /&gt;--------&lt;BR /&gt;1&lt;BR /&gt;A&lt;BR /&gt;a&lt;BR /&gt;&lt;BR /&gt;select * from test&lt;BR /&gt;order by ca desc&lt;BR /&gt;------&lt;BR /&gt;a&lt;BR /&gt;A&lt;BR /&gt;1&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;Victor</description>
      <pubDate>Fri, 05 Jul 2002 13:04:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758478#M945007</guid>
      <dc:creator>Victor Geere</dc:creator>
      <dc:date>2002-07-05T13:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.1.7 order by</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758479#M945008</link>
      <description />
      <pubDate>Fri, 05 Jul 2002 13:20:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758479#M945008</guid>
      <dc:creator>Jeanine Kone</dc:creator>
      <dc:date>2002-07-05T13:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.1.7 order by</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758480#M945009</link>
      <description>In previus machine with HP-10.20 and Oracle 7.3.4 we have defined our environment with NLS_LANG=Spanish_Spain.WE8ISO8859P1, now with Oracle 8.1.7 on HP-UX 11.0 64b using same NLS_LANG definition, "order by" sentence have related troubles. Our language is spanish. Any tip about?&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Jul 2002 13:26:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758480#M945009</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2002-07-05T13:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.1.7 order by</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758481#M945010</link>
      <description>The following statement dynamically changes the linguistic sort sequence to Spanish: &lt;BR /&gt;&lt;BR /&gt;ALTER SESSION&lt;BR /&gt;   SET NLS_SORT = XSpanish; &lt;BR /&gt;&lt;BR /&gt;Oracle sorts character values based on their position in the Spanish linguistic sort sequence. &lt;BR /&gt;&lt;BR /&gt;alternatively&lt;BR /&gt;&lt;BR /&gt;ALTER SESSION&lt;BR /&gt;   SET NLS_SORT = ANSI;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Jul 2002 13:54:48 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758481#M945010</guid>
      <dc:creator>Victor Geere</dc:creator>
      <dc:date>2002-07-05T13:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.1.7 order by</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758482#M945011</link>
      <description>Pals,&lt;BR /&gt;&lt;BR /&gt;Regarding my last reply (July 05, 14:26)   about NLS_LANG, Any suggestion about?&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 08 Jul 2002 10:01:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758482#M945011</guid>
      <dc:creator>Jose Mosquera</dc:creator>
      <dc:date>2002-07-08T10:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle 8.1.7 order by</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758483#M945012</link>
      <description>Hello,&lt;BR /&gt;  the order is which the data is displayed is determined by NLS_SORT which can be set at the session level or in the initialisation file.  For example ...&lt;BR /&gt;SQL&amp;gt; alter session set nls_sort = binary;&lt;BR /&gt;&lt;BR /&gt;Session altered.&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt;                           &lt;BR /&gt;SQL&amp;gt; select ianchar from ian order by ianchar asc;&lt;BR /&gt;&lt;BR /&gt;I&lt;BR /&gt;-&lt;BR /&gt;0&lt;BR /&gt;9&lt;BR /&gt;A&lt;BR /&gt;B&lt;BR /&gt;a&lt;BR /&gt;b&lt;BR /&gt;&lt;BR /&gt;6 rows selected.&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; alter session set nls_sort = FRENCH;&lt;BR /&gt;&lt;BR /&gt;Session altered.&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt; select ianchar from ian order by ianchar asc;&lt;BR /&gt;&lt;BR /&gt;I&lt;BR /&gt;-&lt;BR /&gt;A&lt;BR /&gt;a&lt;BR /&gt;B&lt;BR /&gt;b&lt;BR /&gt;0&lt;BR /&gt;9&lt;BR /&gt;&lt;BR /&gt;6 rows selected.&lt;BR /&gt;&lt;BR /&gt;SQL&amp;gt;</description>
      <pubDate>Mon, 08 Jul 2002 13:26:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-8-1-7-order-by/m-p/2758483#M945012</guid>
      <dc:creator>Ian Lochray</dc:creator>
      <dc:date>2002-07-08T13:26:09Z</dc:date>
    </item>
  </channel>
</rss>

