<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Simple Difference &#187; IT</title>
	<atom:link href="http://fendy.simpledifference.net/blog/archives/category/it/feed" rel="self" type="application/rss+xml" />
	<link>http://fendy.simpledifference.net/blog</link>
	<description>To be Simple to make a Difference</description>
	<lastBuildDate>Thu, 01 Apr 2010 00:00:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Oracle cheat sheet</title>
		<link>http://fendy.simpledifference.net/blog/archives/10</link>
		<comments>http://fendy.simpledifference.net/blog/archives/10#comments</comments>
		<pubDate>Tue, 30 Dec 2008 04:11:30 +0000</pubDate>
		<dc:creator>s1mple</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Tips & Triks]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://fendy.simpledifference.net/blog/?p=10</guid>
		<description><![CDATA[- SQLPlus short connection
sqlplus &#60;username&#62;/&#60;password&#62;@&#60;ipAddress&#62;:&#60;port&#62;/&#60;sid&#62; [@&#60;scriptfile&#62;]
Ex:
sqlplus user/pass@192.168.1.10:3267/MYDB @test.sql
- MySQL limit equivalent
Ex:
  SELECT last_name FROM
(SELECT last_name, ROW_NUMBER() OVER (ORDER BY last_name) R FROM employees)
WHERE R BETWEEN 51 and 100;
Alternative:
select *
from ( select a.*, rownum rnum
from ( YOUR_QUERY_GOES_HERE -- including the order by ) a
where rownum &#60;= MAX_ROWS )
where rnum &#62;= MIN_ROWS;
]]></description>
		<wfw:commentRss>http://fendy.simpledifference.net/blog/archives/10/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
