<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Mert Inan's Blog</title>
	<atom:link href="http://inanme.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://inanme.wordpress.com</link>
	<description>Goman</description>
	<lastBuildDate>Mon, 29 Jan 2007 08:02:01 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='inanme.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/635c52809cea313b58805cca063bbdd8?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Mert Inan's Blog</title>
		<link>http://inanme.wordpress.com</link>
	</image>
			<item>
		<title>It is possible to move Oracle index to another tablespace.</title>
		<link>http://inanme.wordpress.com/2007/01/29/it-is-possible-to-move-oracle-index-to-another-tablespace/</link>
		<comments>http://inanme.wordpress.com/2007/01/29/it-is-possible-to-move-oracle-index-to-another-tablespace/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 08:02:01 +0000</pubDate>
		<dc:creator>inanme</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://inanme.wordpress.com/2007/01/29/it-is-possible-to-move-oracle-index-to-another-tablespace/</guid>
		<description><![CDATA[It is possible to move oracle index like tables.
alter table tab move tablespace blabla;
alter index tab_index rebuild tablespace blala;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=8&subd=inanme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It is possible to move oracle index like tables.</p>
<p>alter table tab move tablespace blabla;<br />
alter index tab_index rebuild tablespace blala;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/inanme.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/inanme.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inanme.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inanme.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inanme.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inanme.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inanme.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inanme.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inanme.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inanme.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inanme.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inanme.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=8&subd=inanme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://inanme.wordpress.com/2007/01/29/it-is-possible-to-move-oracle-index-to-another-tablespace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e857d1827d8ff5c4384ae0e30aa51fc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">inanme</media:title>
		</media:content>
	</item>
		<item>
		<title>How to find readable time difference bettween Oracle date types?</title>
		<link>http://inanme.wordpress.com/2007/01/29/how-to-find-readable-time-difference-bettween-oracle-date-types/</link>
		<comments>http://inanme.wordpress.com/2007/01/29/how-to-find-readable-time-difference-bettween-oracle-date-types/#comments</comments>
		<pubDate>Mon, 29 Jan 2007 07:43:55 +0000</pubDate>
		<dc:creator>inanme</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://inanme.wordpress.com/2007/01/29/how-to-find-readable-time-difference-bettween-oracle-date-types/</guid>
		<description><![CDATA[It is not crucial, but it is cool. This way you can find time date/time difference nicely.
SELECT
lpad(EXTRACT(HOUR FROM(dend_date &#8211; dstart_date) DAY TO SECOND),2,&#8217;0&#8242;) &#124;&#124; &#8216; hour &#8216; &#124;&#124;
lpad(EXTRACT(MINUTE FROM(dend_date &#8211; dstart_date) DAY TO SECOND),2,&#8217;0&#8242;) &#124;&#124; &#8216; minute &#8216; &#124;&#124;
lpad(EXTRACT(SECOND FROM(dend_date &#8211; dstart_date) DAY TO SECOND),2,&#8217;0&#8242;) &#124;&#124; &#8216; second &#8216; &#8220;Interval&#8221;
FROM process_log
order by dstart_date desc;
ref::Oracle® Database [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=7&subd=inanme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It is not crucial, but it is cool. This way you can find time date/time difference nicely.</p>
<p>SELECT</p>
<p>lpad(EXTRACT(HOUR FROM(dend_date &#8211; dstart_date) DAY TO SECOND),2,&#8217;0&#8242;) || &#8216; hour &#8216; ||<br />
lpad(EXTRACT(MINUTE FROM(dend_date &#8211; dstart_date) DAY TO SECOND),2,&#8217;0&#8242;) || &#8216; minute &#8216; ||<br />
lpad(EXTRACT(SECOND FROM(dend_date &#8211; dstart_date) DAY TO SECOND),2,&#8217;0&#8242;) || &#8216; second &#8216; &#8220;Interval&#8221;<br />
FROM process_log<br />
order by dstart_date desc;</p>
<p>ref::Oracle® Database SQL Reference<br />
10g Release 2 (10.2)<br />
B14200-02</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/inanme.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/inanme.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inanme.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inanme.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inanme.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inanme.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inanme.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inanme.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inanme.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inanme.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inanme.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inanme.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=7&subd=inanme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://inanme.wordpress.com/2007/01/29/how-to-find-readable-time-difference-bettween-oracle-date-types/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e857d1827d8ff5c4384ae0e30aa51fc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">inanme</media:title>
		</media:content>
	</item>
		<item>
		<title>Mozilla Sunbird™</title>
		<link>http://inanme.wordpress.com/2007/01/05/mozilla-sunbird%e2%84%a2/</link>
		<comments>http://inanme.wordpress.com/2007/01/05/mozilla-sunbird%e2%84%a2/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 14:22:40 +0000</pubDate>
		<dc:creator>inanme</dc:creator>
				<category><![CDATA[Software Products]]></category>

		<guid isPermaLink="false">http://inanme.wordpress.com/2007/01/05/mozilla-sunbird%e2%84%a2/</guid>
		<description><![CDATA[Another qualified product from Mozilla.
http://www.mozilla.org/projects/calendar/sunbird/
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
Mozilla Sunbird™ is a cross-platform calendar application, built upon Mozilla Toolkit. Our goal is to bring Mozilla-style ease-of-use to your calendar, without tying you to a particular storage solution.

       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=6&subd=inanme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Another qualified product from Mozilla.</p>
<p>http://www.mozilla.org/projects/calendar/sunbird/<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Mozilla Sunbird™ is a cross-platform calendar application, built upon Mozilla Toolkit. Our goal is to bring Mozilla-style ease-of-use to your calendar, without tying you to a particular storage solution.<br />
<img src="http://www.mozilla.org/projects/calendar/images/header-sunbird.png" alt="Mozilla sunbird" /></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/inanme.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/inanme.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inanme.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inanme.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inanme.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inanme.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inanme.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inanme.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inanme.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inanme.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inanme.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inanme.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=6&subd=inanme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://inanme.wordpress.com/2007/01/05/mozilla-sunbird%e2%84%a2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e857d1827d8ff5c4384ae0e30aa51fc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">inanme</media:title>
		</media:content>

		<media:content url="http://www.mozilla.org/projects/calendar/images/header-sunbird.png" medium="image">
			<media:title type="html">Mozilla sunbird</media:title>
		</media:content>
	</item>
		<item>
		<title>CMD.exe pre-configuration</title>
		<link>http://inanme.wordpress.com/2007/01/05/cmdexe-pre-configuration/</link>
		<comments>http://inanme.wordpress.com/2007/01/05/cmdexe-pre-configuration/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 11:30:05 +0000</pubDate>
		<dc:creator>inanme</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://inanme.wordpress.com/2007/01/05/cmdexe-pre-configuration/</guid>
		<description><![CDATA[It is well known that Oracle-sql*plus can be configured with a login.sql file preferably placed under same directory of sql*plus. But what about cmd.exe on Windows.
HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun
and/or
HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun
if you edit AutoRun key with a file address (i prefer-&#62; c:\initial.bat), cmd.exe executes that file firstly. this way you can configure your regular work automatically.
   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=4&subd=inanme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It is well known that Oracle-sql*plus can be configured with a login.sql file preferably placed under same directory of sql*plus. But what about cmd.exe on Windows.</p>
<p>HKEY_LOCAL_MACHINE\Software\Microsoft\Command Processor\AutoRun<br />
and/or<br />
HKEY_CURRENT_USER\Software\Microsoft\Command Processor\AutoRun</p>
<p>if you edit AutoRun key with a file address (i prefer-&gt; c:\initial.bat), cmd.exe executes that file firstly. this way you can configure your regular work automatically.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/inanme.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/inanme.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inanme.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inanme.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inanme.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inanme.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inanme.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inanme.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inanme.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inanme.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inanme.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inanme.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=4&subd=inanme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://inanme.wordpress.com/2007/01/05/cmdexe-pre-configuration/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e857d1827d8ff5c4384ae0e30aa51fc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">inanme</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello World</title>
		<link>http://inanme.wordpress.com/2007/01/05/hello-world/</link>
		<comments>http://inanme.wordpress.com/2007/01/05/hello-world/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 09:39:42 +0000</pubDate>
		<dc:creator>inanme</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://inanme.wordpress.com/2007/01/05/hello-world/</guid>
		<description><![CDATA[it is a classic. But i find no other way to start.
#include &#60;stdio.h&#62;
int main(void)
{
printf(&#8220;%s&#8221;,&#8221;Hello World\n&#8221;) ;
}
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=3&subd=inanme&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>it is a classic. But i find no other way to start.</p>
<p>#include &lt;stdio.h&gt;<br />
int main(void)<br />
{</p>
<p>printf(&#8220;%s&#8221;,&#8221;Hello World\n&#8221;) ;<br />
}</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/inanme.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/inanme.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inanme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inanme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inanme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inanme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inanme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inanme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inanme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inanme.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inanme.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inanme.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inanme.wordpress.com&blog=658523&post=3&subd=inanme&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://inanme.wordpress.com/2007/01/05/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2e857d1827d8ff5c4384ae0e30aa51fc?s=96&#38;d=identicon" medium="image">
			<media:title type="html">inanme</media:title>
		</media:content>
	</item>
	</channel>
</rss>