<?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>Oracle Apps Stuff&#039;s Blog</title>
	<atom:link href="http://oracleappsstuff.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://oracleappsstuff.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 03 Mar 2010 06:00:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='oracleappsstuff.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Oracle Apps Stuff&#039;s Blog</title>
		<link>http://oracleappsstuff.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://oracleappsstuff.wordpress.com/osd.xml" title="Oracle Apps Stuff&#039;s Blog" />
	<atom:link rel='hub' href='http://oracleappsstuff.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Materialized Views in Oracle</title>
		<link>http://oracleappsstuff.wordpress.com/2010/03/03/materialized-views-in-oracle/</link>
		<comments>http://oracleappsstuff.wordpress.com/2010/03/03/materialized-views-in-oracle/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 06:00:55 +0000</pubDate>
		<dc:creator>oracleappsstuff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://oracleappsstuff.wordpress.com/?p=5</guid>
		<description><![CDATA[Materialized views (Sources www.oracle.com and www.databasejournal.com) A materialized view is a database object that contains the results of a query. They are local copies of data located remotely, or are used to create summary tables based on aggregations of a table’s data. A materialized view can query tables, views, and other materialized views. Collectively these [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleappsstuff.wordpress.com&amp;blog=12322634&amp;post=5&amp;subd=oracleappsstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Materialized views</strong></p>
<p>(Sources www.oracle.com and www.databasejournal.com)</p>
<p>A <strong>materialized view</strong> is a database object that contains the results of a query. They are local copies of data located remotely, or are used to create summary tables based on aggregations of a table’s data. A materialized view can query tables, views, and other materialized views. Collectively these are called master tables (a replication term) or detail tables (a data warehouse term).</p>
<p>For replication purposes, materialized views allow you to maintain copies of remote data on your local node. These copies are read-only. If you want to update the local copies, you have to use the Advanced Replication feature. You can select data from a materialized view as you would from a table or view.</p>
<p>Materialized views, which store data based on remote tables are also, know as <strong>snapshots</strong>.</p>
<p><strong>Why Use Materialized Views?</strong></p>
<p>You can use materialized views to achieve one or more of the following goals:</p>
<ul>
<li><a href="http://download.oracle.com/docs/cd/B10501_01/server.920/a96567/repmview.htm#25283">Ease Network      Loads</a></li>
<li><a href="http://download.oracle.com/docs/cd/B10501_01/server.920/a96567/repmview.htm#25286">Create a      Mass Deployment Environment</a></li>
<li><a href="http://download.oracle.com/docs/cd/B10501_01/server.920/a96567/repmview.htm#25288">Enable      Data Sub-setting</a></li>
<li><a href="http://download.oracle.com/docs/cd/B10501_01/server.920/a96567/repmview.htm#25290">Enable      Disconnected Computing</a></li>
</ul>
<p><em><span style="text-decoration:underline;">Ease Network Loads</span></em> à If one of your goals is to reduce network loads, then you can use materialized views to distribute your corporate database to regional sites. Instead of the entire company accessing a single database server, user load is distributed across multiple database servers. Through the use of multi-tier materialized views, you can create materialized views based on other materialized views, which enables you to distribute user load to an even greater extent because clients can access materialized view sites instead of master sites. To decrease the amount of data that is replicated, a materialized view can be a subset of a master table or master materialized view.</p>
<p>In addition to not requiring a dedicated network connection, replicating data with materialized views increases data availability by providing local access to the target data. These benefits, combined with mass deployment and data sub-setting (both of which also reduce network loads), greatly enhance the performance and reliability of your replicated database.</p>
<p><em><span style="text-decoration:underline;">Create a Mass Deployment Environment</span></em>à Deployment templates allow you to pre-create a materialized view environment locally. You can then use deployment templates to quickly and easily deploy materialized view environments to support sales force automation and other mass deployment environments. Parameters allow you to create custom data sets for individual users without changing the deployment template. This technology enables you to roll out a database infrastructure to hundreds or thousands of users.</p>
<p><em><span style="text-decoration:underline;">Enable Data Sub-setting</span></em>à  Materialized views allow you to replicate data based on column- and row-level sub-setting, while multimaster replication requires replication of the entire table. Data sub-setting enables you to replicate information that pertains only to a particular site. For example, if you have a regional sales office, then you might replicate only the data that is needed in that region, thereby cutting down on unnecessary network traffic.</p>
<p><em><span style="text-decoration:underline;">Enable Disconnected Computing</span></em>à Materialized views do not require a dedicated network connection. Though you have the option of automating the refresh process by scheduling a job, you can manually refresh your materialized view on-demand, which is an ideal solution for sales applications running on a laptop. For example, a developer can integrate the replication management API for refresh on-demand into the sales application. When the salesperson has completed the day’s orders, the salesperson simply dials up the network and uses the integrated mechanism to refresh the database, thus transferring the orders to the main office.</p>
<p><strong>Read-Only Materialized Views</strong></p>
<p>You can make a materialized view read-only during creation by omitting the FOR UPDATE clause or disabling the equivalent option in the Replication Management tool. Read-only materialized views use many of the same mechanisms as updatable materialized views, except that they do not need to belong to a materialized view group. In addition, using read-only materialized views eliminates the possibility of a materialized view introducing data conflicts at the master site or master materialized view site, although this convenience means that updates cannot be made at the remote materialized view site. The following is an example of a read-only materialized view:</p>
<p>CREATE MATERIALIZED VIEW hr.employees</p>
<p>AS</p>
<p>SELECT * FROM hr.employees@orc1.world</p>
<p><strong> </strong></p>
<p><strong>Updatable Materialized Views</strong></p>
<p>You can make a materialized view updatable during creation by including the FOR UPDATE clause or enabling the equivalent option in the Replication Management tool. For changes made to an updatable materialized view to be pushed back to the master during refresh, the updatable materialized view must belong to a materialized view group. Updatable materialized views enable you to decrease the load on master sites because users can make changes to the data at the materialized view site. The following is an example of an updatable materialized view:</p>
<p>CREATE MATERIALIZED VIEW hr.departments</p>
<p>FOR UPDATE AS</p>
<p>SELECT * FROM hr.departments@orc1.world;</p>
<p><strong>Primary Key Materialized Views</strong></p>
<p>The following statement creates the primary-key materialized view on the table emp located on a remote database.</p>
<p>CREATE MATERIALIZED VIEW mv_emp_pk</p>
<p>REFRESH FAST START WITH SYSDATE</p>
<p>NEXT  SYSDATE + 1/48</p>
<p>WITH PRIMARY KEY</p>
<p>AS</p>
<p>SELECT * FROM emp@remote_db;</p>
<p><em>Note: When you create a materialized view using the FAST option you will need to create a view log on the master tables(s) as shown below:</em></p>
<p>CREATE MATERIALIZED VIEW LOG ON emp;</p>
<p><strong>Rowid Materialized Views</strong></p>
<p>The following statement creates the rowid materialized view on table emp located on a remote database:</p>
<p>CREATE MATERIALIZED VIEW mv_emp_rowid</p>
<p>REFRESH WITH ROWID</p>
<p>AS</p>
<p>SELECT * FROM emp@remote_db;</p>
<p><strong>Subquery Materialized Views</strong></p>
<p>The following statement creates a subquery materialized view based on the emp and dept tables located on the remote database:</p>
<p>CREATE MATERIALIZED VIEW  mv_empdept</p>
<p>AS</p>
<p>SELECT  *</p>
<p>FROM     emp@remote_db e</p>
<p>WHERE  EXISTS ( SELECT * FROM dept@remote_db d</p>
<p>WHERE e.dept_no = d.dept_no)</p>
<p><strong>REFRESH CLAUSE</strong></p>
<p>[refresh [fast|complete|force]</p>
<p>[on demand | commit]</p>
<p>[start with date] [next date]</p>
<p>[with {primary key|rowid}]]</p>
<p>The refresh option specifies:</p>
<ul>
<li>The refresh method used by Oracle to      refresh data in materialized view</li>
<li>Whether the view is primary key      based or row-id based</li>
<li>The time and interval at which the      view is to be refreshed</li>
</ul>
<p><strong><em>Refresh Method</em></strong><em><strong> </strong></em><strong><em>- </em>FAST Clause</strong></p>
<p>The FAST refreshes use the materialized view logs (as seen above) to send the rows that have changed from master tables to the materialized view. You should create a materialized view log for the master tables if you specify the REFRESH FAST clause.</p>
<p>CREATE MATERIALIZED VIEW LOG ON emp;</p>
<p>Materialized views are not eligible for fast refresh if the defined subquery contains an analytic function.</p>
<p><strong><em>Refresh Method – </em>COMPLETE Clause</strong></p>
<p>The complete refresh re-creates the entire materialized view. If you request a complete refresh, Oracle performs a complete refresh even if a fast refresh is possible.</p>
<p><strong><em>Refresh Method – </em>FORCE Clause</strong></p>
<p>When you specify a FORCE clause, Oracle will perform a fast refresh if one is possible or a complete refresh otherwise. If you do not specify a refresh method (FAST, COMPLETE, or FORCE), FORCE is the default.</p>
<p><strong><em>PRIMARY KEY and ROWID Clause</em></strong></p>
<p>WITH PRIMARY KEY is used to create a primary key materialized view i.e. the materialized view is based on the primary key of the master table instead of ROWID (for ROWID clause). PRIMARY KEY is the default option. To use the PRIMARY KEY clause you should have defined PRIMARY KEY on the master table or else you should use ROWID based materialized views.</p>
<p>Primary key materialized views allow materialized view master tables to be reorganized without affecting the eligibility of the materialized view for fast refresh.</p>
<p>Rowid materialized views should have a single master table and cannot contain any of the following:</p>
<ul>
<li>Distinct or aggregate functions</li>
<li>GROUP BY Subqueries , Joins &amp;      Set operations</li>
</ul>
<p><strong><em>Timing the refresh</em></strong></p>
<p>The START WITH clause tells the database when to perform the first replication from the master table to the local base table. It should evaluate to a future point in time. The NEXT clause specifies the interval between refreshes</p>
<p>CREATE MATERIALIZED VIEW mv_emp_pk</p>
<p>REFRESH FAST</p>
<p>START WITH SYSDATE</p>
<p>NEXT  SYSDATE + 2</p>
<p>WITH PRIMARY KEY</p>
<p>AS</p>
<p>SELECT * FROM emp@remote_db;</p>
<p>In the above example, the first copy of the materialized view is made at SYSDATE and the interval at which the refresh has to be performed is every two days.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleappsstuff.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleappsstuff.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleappsstuff.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleappsstuff.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oracleappsstuff.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oracleappsstuff.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oracleappsstuff.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oracleappsstuff.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleappsstuff.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleappsstuff.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleappsstuff.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleappsstuff.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleappsstuff.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleappsstuff.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleappsstuff.wordpress.com&amp;blog=12322634&amp;post=5&amp;subd=oracleappsstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oracleappsstuff.wordpress.com/2010/03/03/materialized-views-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d0aad4aad01fc927643a1aeb28b22a1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">oracleappsstuff</media:title>
		</media:content>
	</item>
		<item>
		<title>Truncate vs Delete in Oracle</title>
		<link>http://oracleappsstuff.wordpress.com/2010/03/03/truncate-vs-delete-in-oracle/</link>
		<comments>http://oracleappsstuff.wordpress.com/2010/03/03/truncate-vs-delete-in-oracle/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 05:11:10 +0000</pubDate>
		<dc:creator>oracleappsstuff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://oracleappsstuff.wordpress.com/?p=8</guid>
		<description><![CDATA[Deletes perform normal DML (Data MANIPULATION Language and NOT MODIFICATION). That is, they take locks on rows, they generate redo (lots of it), and they require segments in the UNDO tablespace. Deletes clear records out of blocks carefully. If a mistake is made a rollback can be issued to restore the records prior to a [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleappsstuff.wordpress.com&amp;blog=12322634&amp;post=8&amp;subd=oracleappsstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Deletes</strong> perform normal DML (Data MANIPULATION Language and NOT MODIFICATION). That is, they take locks on rows, they generate redo (lots of it), and they require segments in the UNDO tablespace. Deletes clear records out of blocks carefully. If a mistake is made a rollback can be issued to restore the records prior to a commit. A delete does not relinquish segment space thus a table in which all records have been deleted retains all of its original blocks.</p>
<p><strong>Truncates</strong> are DDL (Data Definition Language) and, in a sense, cheat. A truncate moves the <strong>High Water Mark</strong> of the table back to zero. No row-level locks are taken; no redo or rollback is generated. All extents bar the initial are de-allocated from the table (if you have MINEXTENTS set to anything other than 1, then that number of extents is retained rather than just the initial). By re-positioning the high water mark, they prevent reading of any table data, so they have the same effect as a delete, but without all the overhead. Just one slight problem: a truncate is a DDL command, so <strong>you can’t roll it back</strong> if you decide you made a mistake. (It’s also true that you can’t selectively truncate – no “WHERE” clause is permitted, unlike with deletes, of course).</p>
<p>By resetting the High Water Mark, the truncate prevents reading of any table’s data, so they it has the same effect as a delete, but without the overhead. There is, however, one aspect of a Truncate that must be kept in mind. Because a Truncate is DDL it issues a COMMIT before it acts and another COMMIT afterward so no rollback of the transaction is possible.</p>
<p>Example:-</p>
<p>SQL&gt; create table testron<br />
2  (testcol varchar2(20));</p>
<p>Table created.</p>
<p>SQL&gt; select sum(blocks)<br />
2  from user_extents<br />
3  where segment_name = ‘TESTRON’<br />
4  /</p>
<p>SUM(BLOCKS)</p>
<p>———–<br />
8</p>
<p>SQL&gt; begin<br />
2  for i in  1..10000<br />
3  Loop<br />
4   insert into testron<br />
5   values(‘truncate karunga’);<br />
6  end loop;<br />
7  commit;<br />
8  end;<br />
9  /</p>
<p>PL/SQL procedure successfully completed.<br />
SQL&gt; select sum(blocks)<br />
2  from user_extents<br />
3  where segment_name = ‘TESTRON’<br />
4  /</p>
<p>SUM(BLOCKS)</p>
<p>———–<br />
32</p>
<p>SQL&gt; truncate table testron<br />
2  /</p>
<p>Table truncated.</p>
<p>SQL&gt; select sum(blocks)<br />
2  from user_extents<br />
3  where segment_name = ‘TESTRON’<br />
4  /</p>
<p>SUM(BLOCKS)</p>
<p>———–<br />
8</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleappsstuff.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleappsstuff.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleappsstuff.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleappsstuff.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oracleappsstuff.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oracleappsstuff.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oracleappsstuff.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oracleappsstuff.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleappsstuff.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleappsstuff.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleappsstuff.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleappsstuff.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleappsstuff.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleappsstuff.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleappsstuff.wordpress.com&amp;blog=12322634&amp;post=8&amp;subd=oracleappsstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oracleappsstuff.wordpress.com/2010/03/03/truncate-vs-delete-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d0aad4aad01fc927643a1aeb28b22a1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">oracleappsstuff</media:title>
		</media:content>
	</item>
		<item>
		<title>Hello world!</title>
		<link>http://oracleappsstuff.wordpress.com/2010/03/01/hello-world/</link>
		<comments>http://oracleappsstuff.wordpress.com/2010/03/01/hello-world/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 23:56:21 +0000</pubDate>
		<dc:creator>oracleappsstuff</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hello everyone! Welcome to Oracle Apps Stuff Blog. I have created this blog in order to keep certain technical documents, notes and articles from different sources on the web, and some of my own experiences under one roof. This blog is for all those who are new to Oracle Applications. I shall be putting in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleappsstuff.wordpress.com&amp;blog=12322634&amp;post=1&amp;subd=oracleappsstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello everyone!</p>
<p>Welcome to Oracle Apps Stuff Blog. I have created this blog in order to keep certain technical documents, notes and articles from different sources on the web, and some of my own experiences under one roof. This blog is for all those who are new to Oracle Applications. I shall be putting in some stuff which I have faced in my proffessional career. Well, this blog would mostly cover Oracle Applications modules, customizations, PL/SQL, Unix Shell Scripting and stuffs like these along with a few selected articles may be.</p>
<p>For now, thank you for reading the blog and I shall come up with the first tech post pretty soon.</p>
<p>Thank you!!!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/oracleappsstuff.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/oracleappsstuff.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/oracleappsstuff.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/oracleappsstuff.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/oracleappsstuff.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/oracleappsstuff.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/oracleappsstuff.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/oracleappsstuff.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/oracleappsstuff.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/oracleappsstuff.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/oracleappsstuff.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/oracleappsstuff.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/oracleappsstuff.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/oracleappsstuff.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=oracleappsstuff.wordpress.com&amp;blog=12322634&amp;post=1&amp;subd=oracleappsstuff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://oracleappsstuff.wordpress.com/2010/03/01/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/4d0aad4aad01fc927643a1aeb28b22a1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">oracleappsstuff</media:title>
		</media:content>
	</item>
	</channel>
</rss>
