<?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>Apps DBA Junction</title>
	<atom:link href="http://sumitsethia.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://sumitsethia.wordpress.com</link>
	<description>Junction of Learning......</description>
	<lastBuildDate>Fri, 03 Dec 2010 09:39:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='sumitsethia.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Apps DBA Junction</title>
		<link>http://sumitsethia.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://sumitsethia.wordpress.com/osd.xml" title="Apps DBA Junction" />
	<atom:link rel='hub' href='http://sumitsethia.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Oracle 10g Database Migration From Windows to Linux</title>
		<link>http://sumitsethia.wordpress.com/2009/07/14/oracle-10g-database-migration-from-windows-to-linux/</link>
		<comments>http://sumitsethia.wordpress.com/2009/07/14/oracle-10g-database-migration-from-windows-to-linux/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 14:25:15 +0000</pubDate>
		<dc:creator>Sumit Sethia</dc:creator>
				<category><![CDATA[CORE ORACLE]]></category>
		<category><![CDATA[Oracle 10g Database Migration From Windows to Linux]]></category>
		<category><![CDATA[migration using rman]]></category>
		<category><![CDATA[move database from windows to linux]]></category>

		<guid isPermaLink="false">http://sumitsethia.wordpress.com/?p=333</guid>
		<description><![CDATA[Oracle 10g Database Migration From Windows to Linux This document describes the procedure required to migrate a database from Windows to Linux using the RMAN Convert Database command.  Both Windows and Linux platforms have the same endian format, which makes possible to transfer the whole database,making the migration process very straightforward and simple.  I have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sumitsethia.wordpress.com&amp;blog=4770242&amp;post=333&amp;subd=sumitsethia&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong><span style="text-decoration:underline;">Oracle 10g Database Migration From Windows to Linux </span></strong></p>
<p>This document describes the procedure required to migrate a database from Windows to Linux using the RMAN Convert Database command.</p>
<p> Both Windows and Linux platforms have the same endian format, which makes possible to transfer the whole database,making the migration process very straightforward and simple.</p>
<p><strong> </strong><strong>I have taken following into assumption.</strong></p>
<p>RDBMS with same version is already there in Linux server. If its not present then Install oracle10g same version as we have at windows machine. Although upgradation is also possible.</p>
<p><strong> </strong><strong><span style="text-decoration:underline;">Check platform compatibility between source and target OS</span></strong></p>
<p><strong> </strong>SQL&gt; select * from V$DB_TRANSPORTABLE_PLATFORM</p>
<p> where PLATFORM_NAME=&#8217;Microsoft Windows IA (32-bit)&#8217; or</p>
<p> PLATFORM_NAME like &#8216;Linux%&#8217;</p>
<p> /</p>
<p>PLATFORM_ID PLATFORM_NAME ENDIAN_FORMAT</p>
<p>&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p><strong>7 Microsoft Windows IA (32-bit) Little</strong></p>
<p><strong>10 Linux IA (32-bit) Little</strong></p>
<p>11 Linux IA (64-bit) Little</p>
<p>13 Linux x86 64-bit Little</p>
<p> </p>
<ol>
<li><strong>2.    </strong><strong><span style="text-decoration:underline;">Start the database in read only mode</span></strong></li>
</ol>
<p>In order to execute dbms_tdb.check_db the database must be opened on read only mode.</p>
<p>SQL&gt; shutdown immediate;</p>
<p> SQL&gt; startup mount;</p>
<p> SQL&gt; <strong>alter database open read only;</strong></p>
<p> <strong>3.    </strong><strong><span style="text-decoration:underline;">Check database readiness for transport from Windows to Linux</span></strong></p>
<p>If the execution of dbms_tdb.check_db does not return any exceptions, that means the database is ready for transport to the target platform.</p>
<p> SQL&gt; set serveroutput on</p>
<p>SQL&gt; declare</p>
<p>2 db_ready boolean;</p>
<p>3 begin</p>
<p>4 db_ready := dbms_tdb.check_db(&#8216;Linux IA (32-bit)&#8217;);</p>
<p>5 end;</p>
<p>6 /</p>
<p>PL/SQL procedure successfully completed.</p>
<p><strong>4.    </strong><strong><span style="text-decoration:underline;">Check if there are any external objects</span></strong></p>
<p>If there is any external objects take note of them, they will need to be taken care</p>
<p>manually</p>
<p>SQL&gt; set serveroutput on</p>
<p>SQL&gt; declare</p>
<p>2 external boolean;</p>
<p>3 begin</p>
<p>4 /* value of external is ignored, but with SERVEROUTPUT set to ON</p>
<p>5 * dbms_tdb.check_external displays report of external objects</p>
<p>6 * on console */</p>
<p>7 external := dbms_tdb.check_external;</p>
<p>8 end;</p>
<p>9 /</p>
<p>The following directories exist in the database:</p>
<p>SYS.DATA_PUMP_DIR, SYS.ORACLE_OCM_CONFIG_DIR, SYS.ADMIN_DIR, SYS.WORK_DIR</p>
<p>PL/SQL procedure successfully completed.</p>
<p> <strong>5.    </strong><strong><span style="text-decoration:underline;">Using the RMAN CONVERT DATABASE Command</span></strong></p>
<p>Having executed successfully the checkup steps, the database is open in read only mode, then the convert database command can be executed with Rman.</p>
<p> I am changing my database name from “WIN1” to “LIN1”.There are 2 options suggested you can follow any one of them as per your requirement.</p>
<p> C:\Documents and Settings\ssethia&gt;rman target / nocatalog</p>
<p> <strong>First option is</strong></p>
<p> RMAN&gt; CONVERT DATABASE NEW DATABASE &#8216;LIN1&#8242;</p>
<p>2&gt; transport script &#8216;F:\transportscript&#8217;</p>
<p>3&gt; to platform &#8216;Linux IA (32-bit)&#8217;;</p>
<p> Your datafiles and Initfile will copy to $ORACLE_HOME/database Like..</p>
<p> At location “F:\oracle\product\10.2.0\db_1\database”</p>
<p>You will find datafiles with name like</p>
<p>“DATA_D-WIN1_I-3182306851_TS-SYSTEM_FNO-1_01KK4H9T”</p>
<p>And initfile like</p>
<p>“INIT_00KK4H9T_1_0.ORA”</p>
<p>Importantly you will find transport script &#8216;F:\transportscript&#8217;</p>
<p><strong> Second option is</strong></p>
<p>CONVERT DATABASE NEW DATABASE &#8216;LIN1&#8242;</p>
<p>transport script &#8216;F:\transportscript_sum1.sql&#8217;</p>
<p>to platform &#8216;Linux IA (32-bit)&#8217;</p>
<p>db_file_name_convert &#8216;F:\oracle\product\10.2.0\oradata\Win1&#8242;,&#8217;F:\LIN1_data&#8217;; ;</p>
<p> In this command you can define the target location.like “F:\LIN1_data”</p>
<p> I am using first option.</p>
<p> <strong>PLEASE Don’t run “transportscript” at this point.</strong></p>
<p> &#8211; The following commands will create a new control file and use it</p>
<p>&#8211; to open the database.</p>
<p>&#8211; Data used by Recovery Manager will be lost.</p>
<p>&#8211; The contents of online logs will be lost and all backups will</p>
<p>&#8211; be invalidated. Use this only if online logs are damaged.</p>
<p> </p>
<p>&#8211; After mounting the created controlfile, the following SQL</p>
<p>&#8211; statement will place the database in the appropriate</p>
<p>&#8211; protection mode:</p>
<p>&#8211;  ALTER DATABASE SET STANDBY DATABASE TO MAXIMIZE PERFORMANCE</p>
<p> </p>
<p>STARTUP NOMOUNT PFILE=&#8217;/vol2/oracle/product/10.2.0/db_1/database/INIT_00KK4H9T_1_0.ORA&#8217;</p>
<p> </p>
<p>&#8211; Create SPFILE</p>
<p>CREATE SPFILE FROM PFILE = &#8216;/vol2/oracle/product/10.2.0/db_1/database/INIT_00KK4H9T_1_0.ORA&#8217;;</p>
<p> </p>
<p> </p>
<p>STARTUP FORCE NOMOUNT</p>
<p>CREATE CONTROLFILE REUSE SET DATABASE &#8216;LIN1&#8242; RESETLOGS  NOARCHIVELOG</p>
<p>    MAXLOGFILES 16</p>
<p>    MAXLOGMEMBERS 3</p>
<p>    MAXDATAFILES 100</p>
<p>    MAXINSTANCES 8</p>
<p>    MAXLOGHISTORY 292</p>
<p>LOGFILE</p>
<p>  GROUP 1 &#8216;/vol2/oracle/product/10.2.0/db_1/database/ARCH_D-LIN1_ID-3182306851_S-2_T-1_A-692205924_00KK4H9T&#8217;  SIZE 50M,</p>
<p>  GROUP 2 &#8216;/vol2/oracle/product/10.2.0/db_1/database/ARCH_D-LIN1_ID-3182306851_S-0_T-1_A-692205924_00KK4H9T&#8217;  SIZE 50M,</p>
<p>  GROUP 3 &#8216;/vol2/oracle/product/10.2.0/db_1/database/ARCH_D-LIN1_ID-3182306851_S-1_T-1_A-692205924_00KK4H9T&#8217;  SIZE 50M</p>
<p>DATAFILE</p>
<p>  &#8216;/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-SYSTEM_FNO-1_01KK4H9T&#8217;,</p>
<p>  &#8216;/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-UNDOTBS1_FNO-2_04KK4HBC&#8217;,</p>
<p>  &#8216;/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-SYSAUX_FNO-3_02KK4HAM&#8217;,</p>
<p>  &#8216;/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-USERS_FNO-4_05KK4HBG&#8217;,</p>
<p>  &#8216;/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-EXAMPLE_FNO-5_03KK4HB5&#8242;</p>
<p>CHARACTER SET WE8MSWIN1252</p>
<p>;</p>
<p> &#8211; Database can now be opened zeroing the online logs.</p>
<p>ALTER DATABASE OPEN RESETLOGS;</p>
<p>&#8211; Commands to add tempfiles to temporary tablespaces.</p>
<p>&#8211; Online tempfiles have complete space information.</p>
<p>&#8211; Other tempfiles may require adjustment.</p>
<p>ALTER TABLESPACE TEMP ADD TEMPFILE &#8216;/vol2/oracle/product/10.2.0/db_1/database/DATA_D-LIN1_I-3182306851_TS-TEMP_FNO-1_00KK4H9T&#8217; SIZE 20M;</p>
<p>&#8211; End of tempfile additions.</p>
<p>set echo off</p>
<p>prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
<p>prompt * Your database has been created successfully!</p>
<p>prompt * There are many things to think about for the new database. Here</p>
<p>prompt * is a checklist to help you stay on track:</p>
<p>prompt * 1. You may want to redefine the location of the directory objects.</p>
<p>prompt * 2. You may want to change the internal database identifier (DBID)</p>
<p>prompt *    or the global database name for this database. Use the</p>
<p>prompt *    NEWDBID Utility (nid).</p>
<p>prompt ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~</p>
<p> </p>
<p>SHUTDOWN IMMEDIATE</p>
<p>STARTUP UPGRADE</p>
<p>@@ ?/rdbms/admin/utlirp.sql</p>
<p>SHUTDOWN IMMEDIATE</p>
<p>STARTUP</p>
<p>&#8211; The following step will recompile all PL/SQL modules.</p>
<p>&#8211; It may take serveral hours to complete.</p>
<p>@@ ?/rdbms/admin/utlrp.sql</p>
<p>set feedback 6;</p>
<p><strong>6.    </strong><strong><span style="text-decoration:underline;">Copy Converted Datafiles, Generated Transport Script and Parameter File to the Linux</span></strong></p>
<p>We need to copy over the generated files to the Linux server, they include all converted datafiles, the transport</p>
<p>script and the generated pfile.</p>
<p>If needed create at this point the directories you will need on the Linux server, for dump destination and flash</p>
<p>recovery area i.e.:</p>
<p> mkdir –p /vol2/database/LIN1/FRA</p>
<p>mkdir -p /vol2/oracle/app/admin/LIN1/adump</p>
<p>mkdir -p /vol2/oracle/app/admin/LIN1/bdump</p>
<p>mkdir -p /vol2/oracle/app/admin/LIN1/cdump</p>
<p>mkdir -p /vol2/oracle/app/admin/LIN1/udump</p>
<p> <strong>7.    </strong><strong><span style="text-decoration:underline;">Copy/FTP the files to the required LINUX server</span></strong></p>
<p><strong> </strong>You can use ftp to copy the required files to the Linux server.</p>
<p> [sumit::/vol2/oracle/product/10.2.0/db_1/database] $ls -lrt</p>
<p>total 1227560</p>
<p> </p>
<p>-rw-rw-r&#8211; 1 sumit sumit      3088 2009-07-14 16:16 TRANSPORTSCRIPT</p>
<p> </p>
<p>-rw-rw-r&#8211; 1 sumit sumit      1456 2009-07-14 16:39 INIT_00KK4H9T_1_0.ORA</p>
<p> </p>
<p>-rw-rw&#8212;- 1 sumit sumit  52429312 2009-07-14 22:40 ARCH_D-LIN1_ID-3182306851_S-2_T-1_A-692205924_00KK4H9T</p>
<p> </p>
<p>-rw-rw&#8212;- 1 sumit sumit  52429312 2009-07-14 22:44 ARCH_D-LIN1_ID-3182306851_S-0_T-1_A-692205924_00KK4H9T</p>
<p> </p>
<p>-rw-rw-r&#8211; 1 sumit sumit   5251072 2009-07-14 22:50 DATA_D-WIN1_I-3182306851_TS-USERS_FNO-4_05KK4HBG</p>
<p> </p>
<p>-rw-rw-r&#8211; 1 sumit sumit 104865792 2009-07-14 22:50 DATA_D-WIN1_I-3182306851_TS-EXAMPLE_FNO-5_03KK4HB5</p>
<p> </p>
<p>-rw-rw&#8212;- 1 sumit sumit  20979712 2009-07-14 22:51 DATA_D-LIN1_I-3182306851_TS-TEMP_FNO-1_00KK4H9T</p>
<p> </p>
<p>-rw-rw-r&#8211; 1 sumit sumit 241180672 2009-07-15 00:18 DATA_D-WIN1_I-3182306851_TS-SYSAUX_FNO-3_02KK4HAM</p>
<p> </p>
<p>-rw-rw-r&#8211; 1 sumit sumit 225452032 2009-07-15 00:20 DATA_D-WIN1_I-3182306851_TS-UNDOTBS1_FNO-2_04KK4HBC</p>
<p> </p>
<p>-rw-rw-r&#8211; 1 sumit sumit 513810432 2009-07-15 00:21 DATA_D-WIN1_I-3182306851_TS-SYSTEM_FNO-1_01KK4H9T</p>
<p> </p>
<p>-rw-rw&#8212;- 1 sumit sumit  52429312 2009-07-15 00:21 ARCH_D-LIN1_ID-3182306851_S-1_T-1_A-692205924_00KK4H9T</p>
<p> </p>
<p>-rw-rw&#8212;- 1 sumit sumit   7389184 2009-07-15 00:21 CF_D-LIN1_ID-3182306851_00KK4H9T</p>
<p> <strong>8.    </strong><strong><span style="text-decoration:underline;">Edit init.ora and Transport Script for new database</span></strong></p>
<p><strong> </strong>You need to make directory structure related changes and replace “ “ “ double codes  with “ ‘ “ single code.</p>
<p> <strong>9.    </strong><strong><span style="text-decoration:underline;">Execute the Transport Script</span></strong></p>
<p><strong> </strong>SQL&gt; @transport</p>
<p> </p>
<p>Script will perform followings:-</p>
<p> </p>
<p>CREATE CONTROLFILE</p>
<p>DATABASE OPEN RESETLOGS</p>
<p>ADD TEMPFILES</p>
<p>And</p>
<p>SHUTDOWN IMMEDIATE</p>
<p>STARTUP UPGRADE</p>
<p>@@ ?/rdbms/admin/utlirp.sql</p>
<p>SHUTDOWN IMMEDIATE</p>
<p>STARTUP</p>
<p>&#8211; The following step will recompile all PL/SQL modules.</p>
<p>&#8211; It may take serveral hours to complete.</p>
<p>@@ ?/rdbms/admin/utlrp.sql</p>
<p> </p>
<p><strong>10. </strong><strong><span style="text-decoration:underline;"> Change database identifier</span></strong></p>
<p><strong> </strong></p>
<p>To change the database identifier you need to use the NEWDBID utility “nid”. It is run from within Sqlplus having</p>
<p>the database mounted:</p>
<p>sqlplus &#8220;/ as sysdba&#8221;</p>
<p>startup mount</p>
<p>exit</p>
<p>To change the DBID</p>
<p>cd $ORACLE_HOME/bin</p>
<p>./nid target=/</p>
<p> </p>
<p><strong>11. </strong><strong><span style="text-decoration:underline;">Check database integrity</span></strong></p>
<p>SQL&gt; select tablespace_name from dba_tablespaces;</p>
<p> </p>
<p>TABLESPACE_NAME</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;</p>
<p>SYSTEM</p>
<p>UNDOTBS1</p>
<p>SYSAUX</p>
<p>TEMP</p>
<p>USERS</p>
<p>EXAMPLE</p>
<p> </p>
<p>6 rows selected.</p>
<p> </p>
<p>SQL&gt; select file_name from dba_data_files;</p>
<p> </p>
<p>FILE_NAME</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-EXAMPLE_FN</p>
<p>O-5_03KK4HB5</p>
<p> </p>
<p>/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-USERS_FNO-</p>
<p>4_05KK4HBG</p>
<p> </p>
<p>/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-SYSAUX_FNO</p>
<p>-3_02KK4HAM</p>
<p> </p>
<p>/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-UNDOTBS1_F</p>
<p>NO-2_04KK4HBC</p>
<p> </p>
<p>FILE_NAME</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p> </p>
<p>/vol2/oracle/product/10.2.0/db_1/database/DATA_D-WIN1_I-3182306851_TS-SYSTEM_FNO</p>
<p>-1_01KK4H9T</p>
<p> </p>
<p>SQL&gt; SELECT COMP_NAME,STATUS FROM DBA_REGISTRY;</p>
<p> </p>
<p>COMP_NAME                                          STATUS</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8211;</p>
<p>Oracle Database Catalog Views                      VALID</p>
<p>Oracle Database Packages and Types                 VALID</p>
<p>Oracle Workspace Manager                           VALID</p>
<p>JServer JAVA Virtual Machine                       VALID</p>
<p>Oracle XDK                                         VALID</p>
<p>Oracle Database Java Packages                      VALID</p>
<p>Oracle Expression Filter                           VALID</p>
<p>Oracle Data Mining                                 VALID</p>
<p>Oracle Text                                        VALID</p>
<p>Oracle XML Database                                VALID</p>
<p>Oracle Rules Manager                               VALID</p>
<p> </p>
<p>COMP_NAME                                          STATUS</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8211;</p>
<p>Oracle interMedia                                  VALID</p>
<p>OLAP Analytic Workspace                            VALID</p>
<p>Oracle OLAP API                                    VALID</p>
<p>OLAP Catalog                                       VALID</p>
<p>Spatial                                            VALID</p>
<p>Oracle Enterprise Manager                          VALID</p>
<p> </p>
<p>17 rows selected.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/sumitsethia.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/sumitsethia.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/sumitsethia.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/sumitsethia.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/sumitsethia.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/sumitsethia.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/sumitsethia.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/sumitsethia.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/sumitsethia.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/sumitsethia.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/sumitsethia.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/sumitsethia.wordpress.com/333/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/sumitsethia.wordpress.com/333/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/sumitsethia.wordpress.com/333/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=sumitsethia.wordpress.com&amp;blog=4770242&amp;post=333&amp;subd=sumitsethia&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://sumitsethia.wordpress.com/2009/07/14/oracle-10g-database-migration-from-windows-to-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7f4a8b377188cc6c5aa2ebdb7202c8bb?s=96&#38;d=&#38;r=G" medium="image">
			<media:title type="html">Sumit Sethia</media:title>
		</media:content>
	</item>
	</channel>
</rss>
