<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: NLS_LIST_SEPARATOR</title>
	<atom:link href="http://oraqa.com/2006/01/10/nls_list_separator/feed/" rel="self" type="application/rss+xml" />
	<link>http://oraqa.com/2006/01/10/nls_list_separator/</link>
	<description>Oracle Question and Answer</description>
	<lastBuildDate>Sat, 07 Aug 2010 04:48:56 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Laurent Schneider</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-24</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Tue, 17 Jan 2006 14:28:34 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-24</guid>
		<description>well, I saw that, but it is a Oracle 7.2 new feature, way before ias...</description>
		<content:encoded><![CDATA[<p>well, I saw that, but it is a Oracle 7.2 new feature, way before ias&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: apc</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-21</link>
		<dc:creator>apc</dc:creator>
		<pubDate>Tue, 17 Jan 2006 10:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-21</guid>
		<description>Given where this crops up in the documentation - iAS Reports - I think this is a parameter that&#039;s only relevant (and hence changeable) in an app server install.  Not having access to such a beast I am unable to confirm this.

Cheers, APC</description>
		<content:encoded><![CDATA[<p>Given where this crops up in the documentation &#8211; iAS Reports &#8211; I think this is a parameter that&#8217;s only relevant (and hence changeable) in an app server install.  Not having access to such a beast I am unable to confirm this.</p>
<p>Cheers, APC</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-12</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Fri, 13 Jan 2006 08:43:30 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-12</guid>
		<description>it is even worst, the info on metalink is simply wrong

&lt;a rel=&quot;nofollow&quot; title=&quot;note251044.1&quot; href=&quot;https://metalink.oracle.com/metalink/plsql/f?p=130:14:10292024482360869148::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,251044.1,1,1,1,helvetica&quot;&gt;Note 251044.1&lt;/a&gt;

&lt;em&gt;The parameters which can be set like this, are all the NLS session parameters:
...
NLS_LIST_SEPARATOR&lt;/em&gt;

!!!</description>
		<content:encoded><![CDATA[<p>it is even worst, the info on metalink is simply wrong</p>
<p><a rel="nofollow" title="note251044.1" href="https://metalink.oracle.com/metalink/plsql/f?p=130:14:10292024482360869148::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,251044.1,1,1,1,helvetica">Note 251044.1</a></p>
<p><em>The parameters which can be set like this, are all the NLS session parameters:<br />
&#8230;<br />
NLS_LIST_SEPARATOR</em></p>
<p>!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois Degrelle</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-11</link>
		<dc:creator>Francois Degrelle</dc:creator>
		<pubDate>Thu, 12 Jan 2006 15:59:55 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-11</guid>
		<description>Well, I am not able to find anything, even on Metalink !</description>
		<content:encoded><![CDATA[<p>Well, I am not able to find anything, even on Metalink !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-10</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Thu, 12 Jan 2006 11:03:51 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-10</guid>
		<description>of course not !
NLS_LIST_SEPARATOR can be used only as an environment variable (like NLS_LANG) and a function accepting a variable number of arguments is not a list

SCOTT@LSC01&gt; alter session set nls_list_separator=&#039;.&#039;;
alter session set nls_list_separator=&#039;.&#039;
*
ERROR at line 1:
ORA-00922: missing or invalid option


f(a,b,c) --&gt; a,b,c is not a &quot;LIST&quot;, the comma is a SQL syntax element and can never be changed!

similary to_number(&#039;2,4&#039;) may work, but to_char(2,4) will definitely not work.

NLS_LIST_SEPARATOR may affect the output of a string, but I wonder in which circumstances</description>
		<content:encoded><![CDATA[<p>of course not !<br />
NLS_LIST_SEPARATOR can be used only as an environment variable (like NLS_LANG) and a function accepting a variable number of arguments is not a list</p>
<p>SCOTT@LSC01&gt; alter session set nls_list_separator=&#8217;.';<br />
alter session set nls_list_separator=&#8217;.&#8217;<br />
*<br />
ERROR at line 1:<br />
ORA-00922: missing or invalid option</p>
<p>f(a,b,c) &#8211;&gt; a,b,c is not a &#8220;LIST&#8221;, the comma is a SQL syntax element and can never be changed!</p>
<p>similary to_number(&#8217;2,4&#8242;) may work, but to_char(2,4) will definitely not work.</p>
<p>NLS_LIST_SEPARATOR may affect the output of a string, but I wonder in which circumstances</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francois Degrelle</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-9</link>
		<dc:creator>Francois Degrelle</dc:creator>
		<pubDate>Thu, 12 Jan 2006 08:40:59 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-9</guid>
		<description>Laurent,
Try to change the value with ALTER SESSION SET NLS_LIST_SEPARATOR=..., then use this new separator in an instruction like GREATEST for example...</description>
		<content:encoded><![CDATA[<p>Laurent,<br />
Try to change the value with ALTER SESSION SET NLS_LIST_SEPARATOR=&#8230;, then use this new separator in an instruction like GREATEST for example&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-8</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Thu, 12 Jan 2006 07:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-8</guid>
		<description>well, this I can read in the doc. Anyone providing an example?

PS: apologize for multiposting...</description>
		<content:encoded><![CDATA[<p>well, this I can read in the doc. Anyone providing an example?</p>
<p>PS: apologize for multiposting&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eddie Awad</title>
		<link>http://oraqa.com/2006/01/10/nls_list_separator/comment-page-1/#comment-7</link>
		<dc:creator>Eddie Awad</dc:creator>
		<pubDate>Wed, 11 Jan 2006 22:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://oradot.com/qa/?p=14#comment-7</guid>
		<description>Francois Degrelle answered this question &lt;a href=&quot;http://groups.google.com/group/OraBloggers/browse_frm/thread/65ee9554d860a5bc?tvc=1&amp;hl=en&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;:

NLS_LIST_SEPARATOR specifies the character to use to separate values in
a list of values (usually , or . or ; or :). Its default value is
derived from the value of NLS_TERRITORY. For example, a list of numbers
from 1 to 5 can be expressed as 1,2,3,4,5 or 1.2.3.4.5 or 1;2;3;4;5 or
1:2:3:4:5.

The character specified must be single-byte and cannot be the same as
either the numeric or monetary decimal character, any numeric
character, or any of the following characters: plus (+), hyphen (-),
less than sign, greater than sign, period (.).</description>
		<content:encoded><![CDATA[<p>Francois Degrelle answered this question <a href="http://groups.google.com/group/OraBloggers/browse_frm/thread/65ee9554d860a5bc?tvc=1&#038;hl=en" rel="nofollow">here</a>:</p>
<p>NLS_LIST_SEPARATOR specifies the character to use to separate values in<br />
a list of values (usually , or . or ; or :). Its default value is<br />
derived from the value of NLS_TERRITORY. For example, a list of numbers<br />
from 1 to 5 can be expressed as 1,2,3,4,5 or 1.2.3.4.5 or 1;2;3;4;5 or<br />
1:2:3:4:5.</p>
<p>The character specified must be single-byte and cannot be the same as<br />
either the numeric or monetary decimal character, any numeric<br />
character, or any of the following characters: plus (+), hyphen (-),<br />
less than sign, greater than sign, period (.).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
