<?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 for Radino's blog</title>
	<atom:link href="http://radino.eu/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://radino.eu</link>
	<description>Focusing on interesting SQL and PL/SQL problems</description>
	<lastBuildDate>Tue, 03 Jan 2012 16:35:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Parsing CSV string by Seb</title>
		<link>http://radino.eu/2009/01/01/parsing-csv-list/comment-page-1/#comment-310</link>
		<dc:creator>Seb</dc:creator>
		<pubDate>Tue, 03 Jan 2012 16:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=77#comment-310</guid>
		<description>Thank you very much. Works perfectly and easy to adapt thanks to detailed explanation.</description>
		<content:encoded><![CDATA[<p>Thank you very much. Works perfectly and easy to adapt thanks to detailed explanation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitwise OR Aggregate Function by Scott</title>
		<link>http://radino.eu/2008/05/31/bitwise-or-aggregate-function/comment-page-1/#comment-309</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 26 Aug 2011 02:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=4#comment-309</guid>
		<description>We found this and used it to great success.  Thanks much!</description>
		<content:encoded><![CDATA[<p>We found this and used it to great success.  Thanks much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitwise OR Aggregate Function by Mark Mitchell</title>
		<link>http://radino.eu/2008/05/31/bitwise-or-aggregate-function/comment-page-1/#comment-303</link>
		<dc:creator>Mark Mitchell</dc:creator>
		<pubDate>Fri, 15 Apr 2011 16:48:52 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=4#comment-303</guid>
		<description>a few months later and another satisfied blog reader. thank you.</description>
		<content:encoded><![CDATA[<p>a few months later and another satisfied blog reader. thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Product aggregate function by Radoslav Golian</title>
		<link>http://radino.eu/2010/11/17/product-aggregate-function/comment-page-1/#comment-282</link>
		<dc:creator>Radoslav Golian</dc:creator>
		<pubDate>Wed, 12 Jan 2011 21:47:00 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=115#comment-282</guid>
		<description>Zukus, nice example for the model clause, but I would prefer group by for aggreagation :)
Rob van Wijk has great articles about model clause http://rwijk.blogspot.com/. 
I&#039;ve read them all, but still.. I use that clause very very rarely :)</description>
		<content:encoded><![CDATA[<p>Zukus, nice example for the model clause, but I would prefer group by for aggreagation <img src='http://radino.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Rob van Wijk has great articles about model clause <a href="http://rwijk.blogspot.com/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/rwijk.blogspot.com/?referer=');">http://rwijk.blogspot.com/</a>.<br />
I&#8217;ve read them all, but still.. I use that clause very very rarely <img src='http://radino.eu/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Product aggregate function by Zukus</title>
		<link>http://radino.eu/2010/11/17/product-aggregate-function/comment-page-1/#comment-281</link>
		<dc:creator>Zukus</dc:creator>
		<pubDate>Wed, 12 Jan 2011 11:20:00 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=115#comment-281</guid>
		<description>Model example:

select
    val 
from dual
MODEL
dimension by ( 1 x )
measures (1 val)
rules
iterate( 4 )  -- n_factorial
( 
    val[1] = val[1] * ( ITERATION_NUMBER + 1 )
)
;</description>
		<content:encoded><![CDATA[<p>Model example:</p>
<p>select<br />
    val<br />
from dual<br />
MODEL<br />
dimension by ( 1 x )<br />
measures (1 val)<br />
rules<br />
iterate( 4 )  &#8212; n_factorial<br />
(<br />
    val[1] = val[1] * ( ITERATION_NUMBER + 1 )<br />
)<br />
;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitwise OR Aggregate Function by Radino&#8217;s blog &#187; Bitcount aggregate function</title>
		<link>http://radino.eu/2008/05/31/bitwise-or-aggregate-function/comment-page-1/#comment-33</link>
		<dc:creator>Radino&#8217;s blog &#187; Bitcount aggregate function</dc:creator>
		<pubDate>Wed, 17 Nov 2010 00:27:03 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=4#comment-33</guid>
		<description>[...] a blog post after ages  . Recently I received a new feedback on my two years old article on bitwise or aggregate function, where a visitor is looking for a bitcount aggregate function. This was a nice exercise for me. [...]</description>
		<content:encoded><![CDATA[<p>[...] a blog post after ages  . Recently I received a new feedback on my two years old article on bitwise or aggregate function, where a visitor is looking for a bitcount aggregate function. This was a nice exercise for me. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bitwise OR Aggregate Function by Jefwork</title>
		<link>http://radino.eu/2008/05/31/bitwise-or-aggregate-function/comment-page-1/#comment-32</link>
		<dc:creator>Jefwork</dc:creator>
		<pubDate>Tue, 16 Nov 2010 21:28:05 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=4#comment-32</guid>
		<description>Yes, 2 years later, this helps me a lot.
Now looking for a bitcount function to count the number of On-bits in a given number.
Thanks
Jef</description>
		<content:encoded><![CDATA[<p>Yes, 2 years later, this helps me a lot.<br />
Now looking for a bitcount function to count the number of On-bits in a given number.<br />
Thanks<br />
Jef</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to implement sleeping by Radoslav Golian</title>
		<link>http://radino.eu/2008/12/25/how-to-implement-sleeping/comment-page-1/#comment-31</link>
		<dc:creator>Radoslav Golian</dc:creator>
		<pubDate>Fri, 08 Oct 2010 05:29:40 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=7#comment-31</guid>
		<description>Comte, see the point 4. at the beginning of this post ;)</description>
		<content:encoded><![CDATA[<p>Comte, see the point 4. at the beginning of this post <img src='http://radino.eu/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to implement sleeping by Comte</title>
		<link>http://radino.eu/2008/12/25/how-to-implement-sleeping/comment-page-1/#comment-30</link>
		<dc:creator>Comte</dc:creator>
		<pubDate>Thu, 07 Oct 2010 18:54:23 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=7#comment-30</guid>
		<description>A piece of code to implement a sleep function in PL/SQL without relying on an extern package:

create table C_SLEEP_LOCK(Un) as select 1 from dual;

create or replace procedure C_sleep(seconds in number default 1) is

   i number;

   procedure sleep_on_rowlock is
           pragma autonomous_transaction;
           tmp number;
   resource_busy exception;
   pragma exception_init (resource_busy, -30006);
   begin
        select Un into tmp from C_SLEEP_LOCK for update wait 1;
   exception
        when resource_busy then null;
   end;

begin

   savepoint sleeper_savepoint;
   select Un into i from C_SLEEP_LOCK for update;
   for i in 1..seconds loop
        sleep_on_rowlock;
   end loop;
   rollback to savepoint sleeper_savepoint;

end C_sleep;
/
You can now test:
Exec C_sleep(10);           -- 10 seconds (about) wait.

You can find the explanations there: http://blog.tanelpoder.com/2008/05/25/using-autonomous-transactions-for-sleeping/</description>
		<content:encoded><![CDATA[<p>A piece of code to implement a sleep function in PL/SQL without relying on an extern package:</p>
<p>create table C_SLEEP_LOCK(Un) as select 1 from dual;</p>
<p>create or replace procedure C_sleep(seconds in number default 1) is</p>
<p>   i number;</p>
<p>   procedure sleep_on_rowlock is<br />
           pragma autonomous_transaction;<br />
           tmp number;<br />
   resource_busy exception;<br />
   pragma exception_init (resource_busy, -30006);<br />
   begin<br />
        select Un into tmp from C_SLEEP_LOCK for update wait 1;<br />
   exception<br />
        when resource_busy then null;<br />
   end;</p>
<p>begin</p>
<p>   savepoint sleeper_savepoint;<br />
   select Un into i from C_SLEEP_LOCK for update;<br />
   for i in 1..seconds loop<br />
        sleep_on_rowlock;<br />
   end loop;<br />
   rollback to savepoint sleeper_savepoint;</p>
<p>end C_sleep;<br />
/<br />
You can now test:<br />
Exec C_sleep(10);           &#8212; 10 seconds (about) wait.</p>
<p>You can find the explanations there: <a href="http://blog.tanelpoder.com/2008/05/25/using-autonomous-transactions-for-sleeping/" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/blog.tanelpoder.com/2008/05/25/using-autonomous-transactions-for-sleeping/?referer=');">http://blog.tanelpoder.com/2008/05/25/using-autonomous-transactions-for-sleeping/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to implement sleeping by Shayna Laski</title>
		<link>http://radino.eu/2008/12/25/how-to-implement-sleeping/comment-page-1/#comment-29</link>
		<dc:creator>Shayna Laski</dc:creator>
		<pubDate>Thu, 07 Oct 2010 00:38:14 +0000</pubDate>
		<guid isPermaLink="false">http://radino.eu/?p=7#comment-29</guid>
		<description>Nice post, thanks for posting. Now I just need to get up off the couch and actually do something... Pleasee continue this great work and I look forward to more of your great blog posts.</description>
		<content:encoded><![CDATA[<p>Nice post, thanks for posting. Now I just need to get up off the couch and actually do something&#8230; Pleasee continue this great work and I look forward to more of your great blog posts.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

