<?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>My Notes</title>
	<atom:link href="http://phuvinh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://phuvinh.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Thu, 03 Apr 2008 07:04:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='phuvinh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>My Notes</title>
		<link>http://phuvinh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://phuvinh.wordpress.com/osd.xml" title="My Notes" />
	<atom:link rel='hub' href='http://phuvinh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Basic Concepts</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/basic-concepts/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/basic-concepts/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 20:26:05 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[Oracle10g Part I]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/?p=13</guid>
		<description><![CDATA[An Oracle Database server consist of two parts: an Oracle instance and an Oracle database a. Oracle instance: a set of Oracle background processes and shared memory area (System Global Area &#8211; SGA). Each running Oracle database is associated with one Oracle instance. Multiple instances can execute concurrently on the same computer, each accessing its [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=13&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>An Oracle Database server consist of two parts: an Oracle instance and an Oracle database<br />
a. <i>Oracle instance</i>: a set of Oracle background processes and shared memory area (System Global Area &#8211; SGA). Each running Oracle database is associated with <b>one</b> Oracle instance. Multiple instances can execute concurrently on the same computer, each accessing its own physical database.</p>
<p>b. <i>Oracle database</i>: a collection of physical operating system files or disks.</p>
<p><b>I. Memory Structure</b><br />
Program Global Area (PGA): is a memory region that contains data and control information for each server process. Private to each server and background process. There is one PGA for each process.</p>
<p>System Global Area (SGA): shared by all server and background processes, it consist of Share pool, Stream pool, Large pool, Java pool, Database buffer cache, Redo log file.</p>
<ul>
<li><i>Share pool</i>: cache various constructs(e.g SQL, PL/SQL &#8230;) that can be shared among users.</li>
<li><i>Stream pool</i>: is used by Oracle Streams.</li>
<li><i>Large pool</i>: provided large memory allocations for certain large processes, such as Oracle backup and recovery.</li>
<li><i>Java pool</i>: is used for all Java session.</li>
<li><i>Database buffer cache</i>: is where Oracle stores database blocks before writing then to the disk and after reading them in from disk. All concurrent user processes share access to the database buffer cache.</li>
<li><i>Redo log buffer</i>: caches redo information used for recovery until it can be written to the redo logs stored on the disk. LGWR initiates a flush of this area in: every 3 second, whenever someone commits, when LGWR ask to switch log file, red log buffer 1/3 full.</li>
</ul>
<p>The most common background process:</p>
<ul>
<li><i>System Monitor (SMON)</i>: Crash recovery when the instance is started following a failure.</li>
<li><i>Process Monitor (PMON)</i>: Process cleanup when a user process fails</li>
<li><i>Database Writer (DBWn)</i>: Writes modified blocks from database buffer cache to the data file on the disk.</li>
<li><i>Checkpoint (CKPT)</i>: Updates all the data files and control files of the data base to indicate the most recent checkpoint.</li>
<li><i>LogWriter(LGWR)</i>: Write redo log entires to the disk.</li>
<li><i><i><i>Archiver(ARCn):</i>: Copies redo log files to the archival storage when a log switch occurs. </i></i></li>
</ul>
<p><i><i><b>II. Physical Structure</b><br />
Consist of Data files and OS Block. There are eight file types that make up a database and instance.</i></i></p>
<ul>
<li><i><i><i>Control files</i>: contain data about the database, it tells where the data files, temp files, and redo log files are.</i></i></li>
<li><i>Data files</i>: These files are for the database, it hold tables, indexes, and all other segments.</li>
<li><i>Parameter file</i>: is used to define how the instance is configured (located the control files) when it is starts up.<br />
<b>What are parameters?</b></p>
<pre>SYS@orcl AS SYSDBA&gt; SELECT NAME, VALUE FROM V$PARAMETER;
NAME                                                                            VALUE
--------------------------------------------------------------------------------------
shadow_core_dump                                                                 partial
background_core_dump                                                             partial
background_dump_dest                                                             /u01/app/oracle/admin/orcl/bdump
user_dump_dest                                                                   /u01/app/oracle/admin/orcl/udump
max_dump_file_size                                                               UNLIMITED
core_dump_dest                                                                   /u01/app/oracle/admin/orcl/cdump
audit_file_dest                                                                  /u01/app/oracle/admin/orcl/adump</pre>
<p><b>Create PFILE or SPFILE</b><br />
<code><br />
SYS@ORCL&gt;CREATE SPFILE FROM PFILE<br />
SYS@ORCL&gt;CREATE PFILE='init_orcl.ora' from SPFILE<br />
</code><br />
<b>Setting values in SPFILE</b><br />
<code><br />
SYS@ORCL&gt;ALTER SYSTEM SET SORT_AREA_SIZE = 6500 DEFERRED<br />
</code></li>
<li><i>Online redo log files</i>:  Allow for instance recovery of database.</li>
<li><i>Password file</i>: Allows user connect remotely to the database and perform administration task.</li>
<li><i>Backup files</i>:  Are used for database recovery.</li>
<li><i>Archive log files</i>: Contain an ongoing history of the data changes that are generated by the instance.</li>
<li><i>Trace files</i>: diagnostic files created by server process in response to some exceptional error condition.</li>
<li><i>Alert files</i>: These are special trace files. They are also known as alert logs.</li>
</ul>
<p><b>single DATABASE -&lt; TABLESPACES -&lt; SEGMENTS -&lt; EXTENTS -&lt; DATA BOCKS</b></p>
<p><i>Tablespace</i><br />
Database is divided into logical storage units called tablespaces. Each database has one or more tablespace. One or more data files are explicitly created for each tablespace to physically store the data of all logical structure in a tablespace.<br />
SYSTEM and SYSAUX tablespace: are created at the time of database creation. They must be online.</p>
<p><i>Data Blocks</i></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/phuvinh.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/phuvinh.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/phuvinh.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/phuvinh.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/phuvinh.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/phuvinh.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/phuvinh.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/phuvinh.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/phuvinh.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/phuvinh.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/phuvinh.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/phuvinh.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/phuvinh.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/phuvinh.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/phuvinh.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/phuvinh.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=13&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/basic-concepts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux Cluster Admin</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/linux-cluster-admin/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/linux-cluster-admin/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:34:34 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[Linux Cluster Admin]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/linux-cluster-admin/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=12&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=12&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/linux-cluster-admin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>Linux System Adminstration</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/linux-system-adminstration/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/linux-system-adminstration/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:33:21 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[Linux System Admin]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/linux-system-adminstration/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=11&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=11&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/linux-system-adminstration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>What is the Bioinformatics?</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/what-is-the-bioinformatics/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/what-is-the-bioinformatics/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:32:12 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[Bioinformatics]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/what-is-the-bioinformatics/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=10&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=10&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/what-is-the-bioinformatics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>LAMP(Linux, Appache, MySQL, PHP or Perl)</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/lamplinux-appache-mysql-php-or-perl/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/lamplinux-appache-mysql-php-or-perl/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:31:32 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[LAMP]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/lamplinux-appache-mysql-php-or-perl/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=9&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=9&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/lamplinux-appache-mysql-php-or-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>What is PHP?</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/what-is-php/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/what-is-php/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:30:07 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/what-is-php/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=8&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=8&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/what-is-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>What is Perl ?</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/what-is-perl/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/what-is-perl/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:29:51 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/what-is-perl/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=7&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=7&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/what-is-perl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL and PL/SQL</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/sql-and-plsql/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/sql-and-plsql/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:29:03 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[SQL and PL/SQL]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/sql-and-plsql/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=6&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=6&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/sql-and-plsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle10g Part II</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/oracle10g-part-ii/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/oracle10g-part-ii/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 19:28:30 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[Oracle10g Part II]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/2008/04/02/oracle10g-part-ii/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=5&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=5&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/oracle10g-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle 10g Part I</title>
		<link>http://phuvinh.wordpress.com/2008/04/02/oracle-10g-basic-concepts/</link>
		<comments>http://phuvinh.wordpress.com/2008/04/02/oracle-10g-basic-concepts/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 07:18:00 +0000</pubDate>
		<dc:creator>phuvinh</dc:creator>
				<category><![CDATA[Oracle10g Part I]]></category>

		<guid isPermaLink="false">http://phuvinh.wordpress.com/?p=3</guid>
		<description><![CDATA[Basic Concepts How to install the Oracle Database How to create an Oracle Database SELECT * from HR.EMPLOYEES<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=3&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ol>
<li><a href="http://phuvinh.wordpress.com/2008/04/02/basic-concepts/">Basic Concepts</a></li>
<li><a href="http://phuvinh.wordpress.com/content/">How to install the Oracle Database</a></li>
<li><a href="http://phuvinh.wordpress.com/content/">How to create an Oracle Database</a></li>
</ol>
<p><code><br />
SELECT * from HR.EMPLOYEES<br />
</code></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/phuvinh.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/phuvinh.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/phuvinh.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/phuvinh.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/phuvinh.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/phuvinh.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/phuvinh.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/phuvinh.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/phuvinh.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/phuvinh.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/phuvinh.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/phuvinh.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/phuvinh.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/phuvinh.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/phuvinh.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/phuvinh.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phuvinh.wordpress.com&amp;blog=3352263&amp;post=3&amp;subd=phuvinh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://phuvinh.wordpress.com/2008/04/02/oracle-10g-basic-concepts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/358caccd90f518f68c010f5d353b2c0c?s=96&#38;d=identicon" medium="image">
			<media:title type="html">phuvinh</media:title>
		</media:content>
	</item>
	</channel>
</rss>
