<?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: Oracle RDBMS 11gR2 &#8211; LISTAGG &#8211; New aggregation operator for creating (comma) delimited strings</title>
	<atom:link href="http://technology.amis.nl/blog/6118/oracle-rdbms-11gr2-listagg-new-aggregation-operator-for-creating-comma-delimited-strings/feed" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/blog/6118/oracle-rdbms-11gr2-listagg-new-aggregation-operator-for-creating-comma-delimited-strings</link>
	<description>Weblog for the AMIS Technology corner</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:47:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Taral Desai</title>
		<link>http://technology.amis.nl/blog/6118/oracle-rdbms-11gr2-listagg-new-aggregation-operator-for-creating-comma-delimited-strings/comment-page-1#comment-349213</link>
		<dc:creator>Taral Desai</dc:creator>
		<pubDate>Fri, 04 Dec 2009 18:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6118#comment-349213</guid>
		<description>Hi Lucas,

That was good examples and feature. But how can you implement below same thing in 10g using collect or any other method

select deptno
,      avg(sal) avg_sal
,      listagg( ename, &#039;,&#039;) within group (order by sal)
       enames
from   emp
group
by     deptno
/</description>
		<content:encoded><![CDATA[<p>Hi Lucas,</p>
<p>That was good examples and feature. But how can you implement below same thing in 10g using collect or any other method</p>
<p>select deptno<br />
,      avg(sal) avg_sal<br />
,      listagg( ename, &#8216;,&#8217;) within group (order by sal)<br />
       enames<br />
from   emp<br />
group<br />
by     deptno<br />
/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RC</title>
		<link>http://technology.amis.nl/blog/6118/oracle-rdbms-11gr2-listagg-new-aggregation-operator-for-creating-comma-delimited-strings/comment-page-1#comment-348827</link>
		<dc:creator>RC</dc:creator>
		<pubDate>Sat, 05 Sep 2009 21:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6118#comment-348827</guid>
		<description>The possibility to use the collect function in combination unique or distinct or order by is new Oracle 11gr1 . I believe it isn&#039;t possible in Oracle 10. 

I hoped that listagg would return a clob instead of a varchar2. What happens when the 4000 limit is surpassed? I can&#039;t test it because I don&#039;t have Linux so I can&#039;t install 11gr2 yet.</description>
		<content:encoded><![CDATA[<p>The possibility to use the collect function in combination unique or distinct or order by is new Oracle 11gr1 . I believe it isn&#8217;t possible in Oracle 10. </p>
<p>I hoped that listagg would return a clob instead of a varchar2. What happens when the 4000 limit is surpassed? I can&#8217;t test it because I don&#8217;t have Linux so I can&#8217;t install 11gr2 yet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://technology.amis.nl/blog/6118/oracle-rdbms-11gr2-listagg-new-aggregation-operator-for-creating-comma-delimited-strings/comment-page-1#comment-348815</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Wed, 02 Sep 2009 15:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6118#comment-348815</guid>
		<description>No, I have no plan to go to OOW this year... did you submit some trivia questions to Lilian?

Kind regards ;-)</description>
		<content:encoded><![CDATA[<p>No, I have no plan to go to OOW this year&#8230; did you submit some trivia questions to Lilian?</p>
<p>Kind regards <img src='http://technology.amis.nl/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas Jellema</title>
		<link>http://technology.amis.nl/blog/6118/oracle-rdbms-11gr2-listagg-new-aggregation-operator-for-creating-comma-delimited-strings/comment-page-1#comment-348813</link>
		<dc:creator>Lucas Jellema</dc:creator>
		<pubDate>Wed, 02 Sep 2009 11:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6118#comment-348813</guid>
		<description>Oops, in that case I have overlooked that particular feature in the COLLECT operator. And I stand corrected. That is the risk you run with such a sophisticated audience! Will we meet at OOW Laurent? Thanks for your comment! Best regards, Lucas</description>
		<content:encoded><![CDATA[<p>Oops, in that case I have overlooked that particular feature in the COLLECT operator. And I stand corrected. That is the risk you run with such a sophisticated audience! Will we meet at OOW Laurent? Thanks for your comment! Best regards, Lucas</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Schneider</title>
		<link>http://technology.amis.nl/blog/6118/oracle-rdbms-11gr2-listagg-new-aggregation-operator-for-creating-comma-delimited-strings/comment-page-1#comment-348812</link>
		<dc:creator>Laurent Schneider</dc:creator>
		<pubDate>Wed, 02 Sep 2009 08:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://technology.amis.nl/blog/?p=6118#comment-348812</guid>
		<description>&lt;i&gt;There are some limitations on using this [COLLECT] operator: it does not support an order by especially for the collected values&lt;/i&gt;

Really? 

select collect(ename order by ename) from emp

seems to be a valid syntax</description>
		<content:encoded><![CDATA[<p><i>There are some limitations on using this [COLLECT] operator: it does not support an order by especially for the collected values</i></p>
<p>Really? </p>
<p>select collect(ename order by ename) from emp</p>
<p>seems to be a valid syntax</p>
]]></content:encoded>
	</item>
</channel>
</rss>

