<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Learning foreign languages with Oracle SQL</title>
	<atom:link href="http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/</link>
	<description></description>
	<lastBuildDate>Tue, 30 Apr 2013 13:06:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Learning foreign languages with Oracle PL/SQL &#187; SQLfail</title>
		<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-212</link>
		<dc:creator><![CDATA[Learning foreign languages with Oracle PL/SQL &#187; SQLfail]]></dc:creator>
		<pubDate>Mon, 19 Nov 2012 09:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-212</guid>
		<description><![CDATA[[...] on the fantastic calendar example from Sokrates/Matthias [...]]]></description>
		<content:encoded><![CDATA[<p>[...] on the fantastic calendar example from Sokrates/Matthias [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: State of Data #96 &#171; Dr Data&#039;s Blog</title>
		<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-168</link>
		<dc:creator><![CDATA[State of Data #96 &#171; Dr Data&#039;s Blog]]></dc:creator>
		<pubDate>Fri, 27 Apr 2012 04:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-168</guid>
		<description><![CDATA[[...] #DBMS – Single SQL to create calendar in multiple languages [...]]]></description>
		<content:encoded><![CDATA[<p>[...] #DBMS – Single SQL to create calendar in multiple languages [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias Rogel</title>
		<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-157</link>
		<dc:creator><![CDATA[Matthias Rogel]]></dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-157</guid>
		<description><![CDATA[Chris,

thanks for that addendum !

Matthias]]></description>
		<content:encoded><![CDATA[<p>Chris,</p>
<p>thanks for that addendum !</p>
<p>Matthias</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Saxon</title>
		<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-156</link>
		<dc:creator><![CDATA[Chris Saxon]]></dc:creator>
		<pubDate>Tue, 10 Apr 2012 20:10:06 +0000</pubDate>
		<guid isPermaLink="false">http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-156</guid>
		<description><![CDATA[Neat, I like it!

We could go for days of the week as well:

WITH y AS
  (SELECT add_months(DATE&#039;2012-01-01&#039;, level  -1) dayy,
    TO_CHAR(add_months(DATE&#039;2012-01-01&#039;, level-1), &#039;DAY&#039;) dy
  FROM dual
    CONNECT BY level&lt;=7
  )
SELECT value AS language,
  y.dy,
  TO_CHAR(y.dayy, &#039;DAY&#039;, q&#039;&#124;nls_date_language=&#039;&#124;&#039;
  &#124;&#124; value
  &#124;&#124; q&#039;&#124;&#039;&#124;&#039;) DAY, to_char(y.dayy, &#039;DAY&#039;, q&#039;&#124;nls_date_language=&#039;&#124;&#039;
  &#124;&#124; value
  &#124;&#124; q&#039;&#124;&#039;&#124;&#039;) DAY_s
from v$nls_valid_values n, y
where n.parameter=&#039;LANGUAGE&#039; 
order by language, y.dayy]]></description>
		<content:encoded><![CDATA[<p>Neat, I like it!</p>
<p>We could go for days of the week as well:</p>
<p>WITH y AS<br />
  (SELECT add_months(DATE&#8217;2012-01-01&#8242;, level  -1) dayy,<br />
    TO_CHAR(add_months(DATE&#8217;2012-01-01&#8242;, level-1), &#8216;DAY&#8217;) dy<br />
  FROM dual<br />
    CONNECT BY level&lt;=7<br />
  )<br />
SELECT value AS language,<br />
  y.dy,<br />
  TO_CHAR(y.dayy, &#039;DAY&#039;, q&#039;|nls_date_language=&#039;|&#039;<br />
  || value<br />
  || q&#039;|&#039;|&#039;) DAY, to_char(y.dayy, &#039;DAY&#039;, q&#039;|nls_date_language=&#039;|&#039;<br />
  || value<br />
  || q&#039;|&#039;|&#039;) DAY_s<br />
from v$nls_valid_values n, y<br />
where n.parameter=&#039;LANGUAGE&#039;<br />
order by language, y.dayy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Use SQL to Create a Calendar in Mutliple Languages &#124; Oracle Administrators Blog - by Aman Sood</title>
		<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-150</link>
		<dc:creator><![CDATA[Use SQL to Create a Calendar in Mutliple Languages &#124; Oracle Administrators Blog - by Aman Sood]]></dc:creator>
		<pubDate>Mon, 02 Apr 2012 17:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-150</guid>
		<description><![CDATA[[...] SQL to Create a Calendar in Mutliple Languages In his post titled learning foreign languages with Oracle SQL, Matthias Rogel shares the following query (I slightly modified and formatted it for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL to Create a Calendar in Mutliple Languages In his post titled learning foreign languages with Oracle SQL, Matthias Rogel shares the following query (I slightly modified and formatted it for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Use SQL to Create a Calendar in Mutliple Languages &#171; oracle fusion identity</title>
		<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-149</link>
		<dc:creator><![CDATA[Use SQL to Create a Calendar in Mutliple Languages &#171; oracle fusion identity]]></dc:creator>
		<pubDate>Mon, 02 Apr 2012 17:18:50 +0000</pubDate>
		<guid isPermaLink="false">http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-149</guid>
		<description><![CDATA[[...] his post titled learning foreign languages with Oracle SQL, Matthias Rogel shares the following query (I slightly modified and formatted it for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] his post titled learning foreign languages with Oracle SQL, Matthias Rogel shares the following query (I slightly modified and formatted it for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Use SQL to Create a Calendar in Mutliple Languages &#187; Eddie Awad&#039;s Blog</title>
		<link>http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-148</link>
		<dc:creator><![CDATA[Use SQL to Create a Calendar in Mutliple Languages &#187; Eddie Awad&#039;s Blog]]></dc:creator>
		<pubDate>Mon, 02 Apr 2012 16:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://marogel.wordpress.com/2012/03/23/learning-foreign-languages-with-oracle-sql/#comment-148</guid>
		<description><![CDATA[[...] his post titled learning foreign languages with Oracle SQL, Matthias Rogel shares the following query (I slightly modified and formatted it for [...]]]></description>
		<content:encoded><![CDATA[<p>[...] his post titled learning foreign languages with Oracle SQL, Matthias Rogel shares the following query (I slightly modified and formatted it for [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
