<?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: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>OracleLand</title>
	<atom:link href="http://pierreroussin.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://pierreroussin.wordpress.com</link>
	<description>Just another Oracle Blog</description>
	<lastBuildDate>Wed, 13 May 2009 16:13:29 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='pierreroussin.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/cdbd3fa07490ea6e2268b3533f870bb8?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>OracleLand</title>
		<link>http://pierreroussin.wordpress.com</link>
	</image>
			<item>
		<title>Some Oracle 10g Best Practices</title>
		<link>http://pierreroussin.wordpress.com/2009/04/05/some-oracle-10g-best-practices/</link>
		<comments>http://pierreroussin.wordpress.com/2009/04/05/some-oracle-10g-best-practices/#comments</comments>
		<pubDate>Sun, 05 Apr 2009 15:15:04 +0000</pubDate>
		<dc:creator>nomadetech</dc:creator>
				<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://pierreroussin.wordpress.com/?p=74</guid>
		<description><![CDATA[

Learn to decipher Awr reports.


Create      index only where needed, drop unneeded indexes.


Use      outlines if code is not modifiable.


Use      RAID-5 for OLTP systems, 85-95% of io’s are reads anyway.


Create      tablespace with extent management local and segment [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pierreroussin.wordpress.com&blog=2852757&post=74&subd=pierreroussin&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://pierreroussin.wordpress.com/2009/04/05/some-oracle-10g-best-practices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/19fb4ac5ea4fde98bf2b762bdb50831b?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">nomadetech</media:title>
		</media:content>
	</item>
		<item>
		<title>Compare timestamps in a text file</title>
		<link>http://pierreroussin.wordpress.com/2009/01/14/compare-timestamps-in-a-text-file/</link>
		<comments>http://pierreroussin.wordpress.com/2009/01/14/compare-timestamps-in-a-text-file/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 19:39:25 +0000</pubDate>
		<dc:creator>nomadetech</dc:creator>
				<category><![CDATA[Shell scripting]]></category>
		<category><![CDATA[compare date]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[shell script]]></category>
		<category><![CDATA[timestamps]]></category>

		<guid isPermaLink="false">http://pierreroussin.wordpress.com/?p=52</guid>
		<description><![CDATA[I needed to compare 2 timestamps in a log file and come up with the newest.
Here&#8217;s the little script I wrote:

I needed to remove the blanks and non-numerical characters
Then compare the numerical strings

Before proceeding make sure to convert your string in this order: year, month, day, hh24, mi, ss
#!/bin/sh
DATE1=&#8221;2008 September 12 11:30:45&#8243;
DATE2=&#8221;2008 September 12 12:45:32&#8243;
dateval1=`print [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pierreroussin.wordpress.com&blog=2852757&post=52&subd=pierreroussin&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://pierreroussin.wordpress.com/2009/01/14/compare-timestamps-in-a-text-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/19fb4ac5ea4fde98bf2b762bdb50831b?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">nomadetech</media:title>
		</media:content>
	</item>
		<item>
		<title>Rman Backup script on Windows</title>
		<link>http://pierreroussin.wordpress.com/2008/10/28/rman-backup-script-on-windows/</link>
		<comments>http://pierreroussin.wordpress.com/2008/10/28/rman-backup-script-on-windows/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 14:52:34 +0000</pubDate>
		<dc:creator>nomadetech</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[RMAN]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://pierreroussin.wordpress.com/?p=45</guid>
		<description><![CDATA[Hello,
Here&#8217;s a script I created recently to backup a database under Windows with RMAN.
Hope you enjoy it.
Pierre
The script takes 4 parameters:

Target Database Sid
Rman Database Sid
Rman Database Password
Level of Rman backup

SET ORACLE_HOME=E:\ORACLE\ORA10G
SET ORACLE_SID=%1%
SET RMAN_DB=%2%
SET CATALOG_PASS=%3%
SET LEVELBCK=%4%
SET CATALOG_PASS=rman/%CATALOG_PASS%@%RMAN_DB%
SET RMAN_DEST=K:\SAUVEGARDES\RMAN\%ORACLE_SID%
SET LOG_DEST=K:\SAUVEGARDES\LOGS
SET NLS_LANG=AMERICAN_AMERICA.UTF8
SET TMPDIR=E:\ORACLE\TEMPSCRIPTS
@echo on
cd %TMPDIR%
REM This bit generates the RMAN script to backup database,
REM archivelogs and control file [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pierreroussin.wordpress.com&blog=2852757&post=45&subd=pierreroussin&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://pierreroussin.wordpress.com/2008/10/28/rman-backup-script-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/19fb4ac5ea4fde98bf2b762bdb50831b?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">nomadetech</media:title>
		</media:content>
	</item>
		<item>
		<title>Network import with DataPump</title>
		<link>http://pierreroussin.wordpress.com/2008/10/08/network-import-with-datapump/</link>
		<comments>http://pierreroussin.wordpress.com/2008/10/08/network-import-with-datapump/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 10:04:20 +0000</pubDate>
		<dc:creator>nomadetech</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[datapump]]></category>
		<category><![CDATA[network_link]]></category>

		<guid isPermaLink="false">http://pierreroussin.wordpress.com/?p=22</guid>
		<description><![CDATA[With DataPump, there is no need to create an export file anymore, if the sole purpose is to import data.
 
Before proceeding with the import, the following needs to be configured:
 

Create a streams pool (50Mb)
Create a directory (Since there is no export file involved, it serves as the location of the datapump logfile, there is no export file involved)
Grant [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=pierreroussin.wordpress.com&blog=2852757&post=22&subd=pierreroussin&ref=&feed=1" />]]></description>
		<wfw:commentRss>http://pierreroussin.wordpress.com/2008/10/08/network-import-with-datapump/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/19fb4ac5ea4fde98bf2b762bdb50831b?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96" medium="image">
			<media:title type="html">nomadetech</media:title>
		</media:content>
	</item>
	</channel>
</rss>