<?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>Peace be with you</title>
	<atom:link href="http://polimetla.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://polimetla.com</link>
	<description>Bhavani P Polimetla's Blog &#124; భవాని పి పోలిమెట్ల శోధన</description>
	<lastBuildDate>Wed, 16 May 2012 00:23:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='polimetla.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Peace be with you</title>
		<link>http://polimetla.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://polimetla.com/osd.xml" title="Peace be with you" />
	<atom:link rel='hub' href='http://polimetla.com/?pushpress=hub'/>
		<item>
		<title>Java Reflection &#8211; Print all fields in VO / DT class</title>
		<link>http://polimetla.com/2012/05/15/java-reflection-print-all-fields-in-vo-dt-class/</link>
		<comments>http://polimetla.com/2012/05/15/java-reflection-print-all-fields-in-vo-dt-class/#comments</comments>
		<pubDate>Wed, 16 May 2012 00:23:22 +0000</pubDate>
		<dc:creator>polimetla</dc:creator>
				<category><![CDATA[Core Java]]></category>

		<guid isPermaLink="false">http://polimetla.com/?p=2354</guid>
		<description><![CDATA[VO: Value Object Class DT: Data Transfer Class Many times we end up writing too lengthy code to print all fields of above classes. Filed under: Core Java<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2354&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>VO: Value Object Class<br />
DT: Data Transfer Class</p>
<p>Many times we end up writing too lengthy code to print all fields of above classes.</p>
<p><pre class="brush: java;">
public String toString() {
		StringBuffer sb = new StringBuffer();
		for (Field field : this.getClass().getDeclaredFields()) {
			try {
				field.setAccessible(true);
				String name = field.getName();
				Object value = field.get(this);
				sb.append(&quot;#&quot;).append(name).append(&quot;=&gt;&quot;).append(value);
			} catch (Exception ex) {
				ex.printStackTrace();
			}
		}
		return sb.toString();
	}
</pre></p>
<br />Filed under: <a href='http://polimetla.com/category/java/j2se/core-java/'>Core Java</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polimetla.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polimetla.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polimetla.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polimetla.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polimetla.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polimetla.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polimetla.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polimetla.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polimetla.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polimetla.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polimetla.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polimetla.wordpress.com/2354/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polimetla.wordpress.com/2354/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polimetla.wordpress.com/2354/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2354&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polimetla.com/2012/05/15/java-reflection-print-all-fields-in-vo-dt-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe0ec0e19b3f738f49bb64ef4d9dadb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polimetla</media:title>
		</media:content>
	</item>
		<item>
		<title>Kids Programming</title>
		<link>http://polimetla.com/2012/05/10/kids-programming/</link>
		<comments>http://polimetla.com/2012/05/10/kids-programming/#comments</comments>
		<pubDate>Thu, 10 May 2012 21:51:22 +0000</pubDate>
		<dc:creator>polimetla</dc:creator>
				<category><![CDATA[Insipirational]]></category>
		<category><![CDATA[Software Engineering]]></category>
		<category><![CDATA[Kids Programming]]></category>

		<guid isPermaLink="false">http://polimetla.com/?p=2351</guid>
		<description><![CDATA[Scratch is nice Programming language for kids http://scratch.mit.edu/ http://learnscratch.org/ The MagPi: a Raspberry Pi community magazine http://www.themagpi.com/ Filed under: Insipirational, Software Engineering Tagged: Kids Programming<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2351&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Scratch is nice Programming language for kids<br />
<a href="http://scratch.mit.edu/" target="_blank">http://scratch.mit.edu/</a></p>
<p><a href="http://learnscratch.org/" target="_blank">http://learnscratch.org/</a></p>
<p>The MagPi: a Raspberry Pi community magazine<br />
<a href="http://www.themagpi.com/" target="_blank">http://www.themagpi.com/</a></p>
<br />Filed under: <a href='http://polimetla.com/category/1-self-personal/insipirational/'>Insipirational</a>, <a href='http://polimetla.com/category/software-engineering/'>Software Engineering</a> Tagged: <a href='http://polimetla.com/tag/kids-programming/'>Kids Programming</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polimetla.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polimetla.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polimetla.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polimetla.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polimetla.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polimetla.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polimetla.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polimetla.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polimetla.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polimetla.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polimetla.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polimetla.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polimetla.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polimetla.wordpress.com/2351/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2351&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polimetla.com/2012/05/10/kids-programming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe0ec0e19b3f738f49bb64ef4d9dadb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polimetla</media:title>
		</media:content>
	</item>
		<item>
		<title>aeromonas hydrophilia bacteria</title>
		<link>http://polimetla.com/2012/05/10/aeromonas-hydrophilia-bacteria/</link>
		<comments>http://polimetla.com/2012/05/10/aeromonas-hydrophilia-bacteria/#comments</comments>
		<pubDate>Thu, 10 May 2012 21:44:25 +0000</pubDate>
		<dc:creator>polimetla</dc:creator>
				<category><![CDATA[Health]]></category>

		<guid isPermaLink="false">http://polimetla.com/?p=2347</guid>
		<description><![CDATA[If you get cut in a stream, creek, river, or lake in the U.S., you better TELL the hospital to check for aeromonas hydrophilia bacteria. That way, since they won&#8217;t think of it, if you tell them first, you might not die. Courtesy: Took from comments section. Flesh-Eating Disease: Student Shows Signs of Recovery Filed [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2347&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you get cut in a stream, creek, river, or lake in the U.S., you better TELL the hospital to check for aeromonas hydrophilia bacteria. That way, since they won&#8217;t think of it, if you tell them first, you might not die.</p>
<p>Courtesy: Took from comments section.</p>
<p><a href="http://gma.yahoo.com/rare-flesh-eating-disease-caused-common-bacteria-140937338--abc-news-wellness.html" target="_blank">Flesh-Eating Disease: Student Shows Signs of Recovery</a></p>
<br />Filed under: <a href='http://polimetla.com/category/1-self-personal/health/'>Health</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polimetla.wordpress.com/2347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polimetla.wordpress.com/2347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polimetla.wordpress.com/2347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polimetla.wordpress.com/2347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polimetla.wordpress.com/2347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polimetla.wordpress.com/2347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polimetla.wordpress.com/2347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polimetla.wordpress.com/2347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polimetla.wordpress.com/2347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polimetla.wordpress.com/2347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polimetla.wordpress.com/2347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polimetla.wordpress.com/2347/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polimetla.wordpress.com/2347/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polimetla.wordpress.com/2347/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2347&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polimetla.com/2012/05/10/aeromonas-hydrophilia-bacteria/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe0ec0e19b3f738f49bb64ef4d9dadb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polimetla</media:title>
		</media:content>
	</item>
		<item>
		<title>Startup Software Company &#8211; Architecture</title>
		<link>http://polimetla.com/2012/05/03/startup-software-company-architecture/</link>
		<comments>http://polimetla.com/2012/05/03/startup-software-company-architecture/#comments</comments>
		<pubDate>Thu, 03 May 2012 14:14:48 +0000</pubDate>
		<dc:creator>polimetla</dc:creator>
				<category><![CDATA[Software Architecture]]></category>
		<category><![CDATA[Startup Architecture]]></category>

		<guid isPermaLink="false">http://polimetla.com/?p=2328</guid>
		<description><![CDATA[Problem Statement: Many times startup companies are approaching me to help them to architect their solutions. Strengths: 1. Good concept with patents and copy rights 2. Experienced management and Marketing Weakness: 1. Very low investment 2. Lack of technology. 3. No infrastructure. They expect very fast faced development. Rapid prototyping. My suggestions are as follows. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2328&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Problem Statement:</strong> Many times startup companies are approaching me to help them to architect their solutions.</p>
<p><strong>Strengths:</strong><br />
1. Good concept with patents and copy rights<br />
2. Experienced management and Marketing</p>
<p><strong>Weakness:</strong><br />
1. Very low investment<br />
2. Lack of technology.<br />
3. No infrastructure.</p>
<p>They expect very fast faced development.<br />
Rapid prototyping.</p>
<p><strong>My suggestions are as follows.</strong><br />
1. Avoid infrastructure issues<br />
Option 1: Go with Amazon<br />
Option 2: Go with any available data centers<br />
2. Use Ubuntu Linux for Development testing.<br />
3. Concentrate on data storage, performance and integrity. (Data Architect / DBAs Work)<br />
4. Keep back end as services. (Don&#8217;t build monolithic 500k lines of code and 100 jars)<br />
Also provides easy integration with future UIs and other services.<br />
5. Build UI separately and let it consume services.<br />
6. Choose experienced Solution Architect to orchestrate the end to end solution.<br />
7. Don&#8217;t tightly couple with any vendor (Amazon, &#8230;etc) specific API.<br />
&#8230;.I can&#8217;t write all hear&#8230;.contact me for more information&#8230;.</p>
<p><strong>Web Application Hosting</strong></p>
<p><a href="http://d36cz9buwru1tt.cloudfront.net/architecturecenter/AWS_ac_ra_web_01.pdf" target="_blank">http://d36cz9buwru1tt.cloudfront.net/architecturecenter/AWS_ac_ra_web_01.pdf</a><br />
<a href="http://aws.amazon.com/architecture/" target="_blank"> http://aws.amazon.com/architecture/</a></p>
<p>Option 1: We can move to Amazon and avoid buying all new hardware and internet bandwidth.</p>
<p>Option 2: Learn from Amazon on how they are serving 1000&#8242;s of customers without much issues.</p>
<p>Option 3: Planned data center costs must be competitive with Amzon pricing.<br />
<a href="http://aws.amazon.com/ec2/#pricing" target="_blank"> http://aws.amazon.com/ec2/#pricing</a></p>
<p>Monitoring<br />
<a href="http://aws.amazon.com/cloudwatch/" target="_blank"> http://aws.amazon.com/cloudwatch/</a></p>
<p>Case Studies<br />
<a href="http://aws.amazon.com/solutions/case-studies/" target="_blank"> http://aws.amazon.com/solutions/case-studies/</a></p>
<p>Not learning from others is not an excuse for our busy schedules.<br />
We need to spend 10% of our time in research and future planning.<br />
-o-</p>
<br />Filed under: <a href='http://polimetla.com/category/sdlc/software-architecture-sdlc/'>Software Architecture</a> Tagged: <a href='http://polimetla.com/tag/software-architecture/'>Software Architecture</a>, <a href='http://polimetla.com/tag/startup-architecture/'>Startup Architecture</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polimetla.wordpress.com/2328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polimetla.wordpress.com/2328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polimetla.wordpress.com/2328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polimetla.wordpress.com/2328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polimetla.wordpress.com/2328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polimetla.wordpress.com/2328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polimetla.wordpress.com/2328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polimetla.wordpress.com/2328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polimetla.wordpress.com/2328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polimetla.wordpress.com/2328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polimetla.wordpress.com/2328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polimetla.wordpress.com/2328/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polimetla.wordpress.com/2328/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polimetla.wordpress.com/2328/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2328&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polimetla.com/2012/05/03/startup-software-company-architecture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe0ec0e19b3f738f49bb64ef4d9dadb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polimetla</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle deadlock for Delete statement</title>
		<link>http://polimetla.com/2012/05/03/oracle-deadlock-for-delete-statement/</link>
		<comments>http://polimetla.com/2012/05/03/oracle-deadlock-for-delete-statement/#comments</comments>
		<pubDate>Thu, 03 May 2012 12:48:16 +0000</pubDate>
		<dc:creator>polimetla</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://polimetla.com/?p=2326</guid>
		<description><![CDATA[When analyzing oracle dump kjxocdr: drop duplicate open [0x1530018][0x362c1],[TX].17 0x0x1b834e988 [held 0][req 3] kjxocdr: drop duplicate open [0x1530018][0x362c1],[TX].17 0x0x1b834e988 [held 0][req 3] kjddopr: skip converting lock 0x1d96bf530 dd_cnt 1 user session for deadlock lock 0x1d93e8088 pid=575 serial=63890 audsid=150018868 user: 77/MAS O/S info: user: abcuser, term: unknown, ospid: 1234, machine: MAS2.abcd.com program: JDBC Thin Client application [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2326&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>When analyzing oracle dump<br />
kjxocdr: drop duplicate open [0x1530018][0x362c1],[TX].17 0x0x1b834e988 [held 0][req 3]<br />
kjxocdr: drop duplicate open [0x1530018][0x362c1],[TX].17 0x0x1b834e988 [held 0][req 3]<br />
kjddopr: skip converting lock 0x1d96bf530 dd_cnt 1<br />
user session for deadlock lock 0x1d93e8088<br />
pid=575 serial=63890 audsid=150018868 user: 77/MAS<br />
O/S info: user: abcuser, term: unknown, ospid: 1234, machine: MAS2.abcd.com<br />
program: JDBC Thin Client<br />
application name: JDBC Thin Client, hash value=2546894661<br />
Current SQL Statement:<br />
<strong> delete from MAS.table_name where app_name = :1 and lst_updt_ts between :2 and :3</strong><br />
ENQUEUE DUMP REQUEST: from 0.27988 on [0x320020][0x182e1a],[TX] for reason 3 mtype 0<br />
DUMP LOCAL BLOCKER/HOLDER: block level 5 res [0x320020][0x182e1a],[TX]</p>
<p>Solution:<br />
Problem: look at the table description &#8230;you can see&#8230;INITRANS <strong>2</strong> MAXTRANS 255</p>
<p>We need to increase INITRANS to 100 for better performance. When we have more concurrent sessions, this is important.</p>
<p><a href="http://www.dba-oracle.com/t_initrans.htm">http://www.dba-oracle.com/t_initrans.htm</a></p>
<p>Oracle Finetuning<br />
<a href="http://www.dba-oracle.com/art_sql_tune.htm" target="_blank">http://www.dba-oracle.com/art_sql_tune.htm</a><br />
<a href="http://www.orafaq.com/wiki/Oracle_database_Performance_Tuning_FAQ" target="_blank">http://www.orafaq.com/wiki/Oracle_database_Performance_Tuning_FAQ</a></p>
<br />Filed under: <a href='http://polimetla.com/category/database/oracle/'>Oracle</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/polimetla.wordpress.com/2326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/polimetla.wordpress.com/2326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/polimetla.wordpress.com/2326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/polimetla.wordpress.com/2326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/polimetla.wordpress.com/2326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/polimetla.wordpress.com/2326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/polimetla.wordpress.com/2326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/polimetla.wordpress.com/2326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/polimetla.wordpress.com/2326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/polimetla.wordpress.com/2326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/polimetla.wordpress.com/2326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/polimetla.wordpress.com/2326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/polimetla.wordpress.com/2326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/polimetla.wordpress.com/2326/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=polimetla.com&#038;blog=4537874&#038;post=2326&#038;subd=polimetla&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://polimetla.com/2012/05/03/oracle-deadlock-for-delete-statement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fe0ec0e19b3f738f49bb64ef4d9dadb2?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">polimetla</media:title>
		</media:content>
	</item>
	</channel>
</rss>
