<?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>Yorakb</title>
	<atom:link href="http://yorakb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://yorakb.wordpress.com</link>
	<description>Personnal Oracle knowledge base</description>
	<lastBuildDate>Thu, 17 Nov 2011 16:13:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='yorakb.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Yorakb</title>
		<link>http://yorakb.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://yorakb.wordpress.com/osd.xml" title="Yorakb" />
	<atom:link rel='hub' href='http://yorakb.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Update table with the content of another table</title>
		<link>http://yorakb.wordpress.com/2011/11/17/update-table-with-the-content-of-another-table/</link>
		<comments>http://yorakb.wordpress.com/2011/11/17/update-table-with-the-content-of-another-table/#comments</comments>
		<pubDate>Thu, 17 Nov 2011 16:10:11 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[SQL code]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=339</guid>
		<description><![CDATA[Data model : CREATE TABLE T05_SQLS ( ID integer , SQL_ID VARCHAR2(13), TEXT VARCHAR2(4000) ) CREATE TABLE T05_SQLS_STAGING ( SQL_ID VARCHAR2(13), TEXT VARCHAR2(4000) ) To update the text column of T05_SQLS from T05_SQLS_STAGING if the text column is null :<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=339&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Data model :</p>
<p>CREATE TABLE T05_SQLS (<br />
    ID     integer ,<br />
    SQL_ID VARCHAR2(13),<br />
    TEXT   VARCHAR2(4000)<br />
 )</p>
<p>CREATE TABLE T05_SQLS_STAGING (<br />
    SQL_ID VARCHAR2(13),<br />
    TEXT   VARCHAR2(4000)<br />
 )</p>
<p>To update the text column of T05_SQLS from T05_SQLS_STAGING if the text column is null :</p>
<p><pre class="brush: sql;">

    update t05_sqls t05 set t05.text = (
      select t05s.text from t05_sqls_staging t05s where t05s.sql_id = t05.sql_id
    ) where exists (
        select 1 from t05_sqls_staging t05s where t05s.sql_id = t05.sql_id
    ) and nvl(t05.text,'_') = '_';

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/339/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/339/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/339/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=339&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2011/11/17/update-table-with-the-content-of-another-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Secure remote EJB and RichFaces with NetBeans 6.9.1 and Glassfish 2.1.1</title>
		<link>http://yorakb.wordpress.com/2010/12/11/secure-remote-ejb-and-richfaces-with-netbeans-6-9-1-and-glassfish-2-1-1/</link>
		<comments>http://yorakb.wordpress.com/2010/12/11/secure-remote-ejb-and-richfaces-with-netbeans-6-9-1-and-glassfish-2-1-1/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 13:58:49 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Other]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=326</guid>
		<description><![CDATA[Create  a web application project in NetBeans : select &#8220;use dedicated folder for shared lib&#8221; .\lib select JSF framework In the lib directory, create a richfaces folder containing the following jar : commons-beanutils-1.7.0.jar commons-collections-3.2.jar commons-digester-1.8.jar commons-logging-1.0.4.jar jhighlight-1.0.jar richfaces-api-3.3.3.Final.jar richfaces-impl-3.3.3.Final.jar richfaces-impl-jsf2-3.3.3.Final.jar richfaces-ui-3.3.3.Final.jar In the lib directory, create an folder containing the following jar coming from the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=326&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Create  a web application project in NetBeans :</p>
<ul>
<li>select &#8220;use dedicated folder for shared lib&#8221; .\lib</li>
<li>select JSF framework</li>
</ul>
<p>In the lib directory, create a richfaces folder containing the following jar :</p>
<ul>
<li>commons-beanutils-1.7.0.jar</li>
<li> commons-collections-3.2.jar</li>
<li> commons-digester-1.8.jar</li>
<li> commons-logging-1.0.4.jar</li>
<li> jhighlight-1.0.jar</li>
<li> richfaces-api-3.3.3.Final.jar</li>
<li> richfaces-impl-3.3.3.Final.jar</li>
<li> richfaces-impl-jsf2-3.3.3.Final.jar</li>
<li> richfaces-ui-3.3.3.Final.jar</li>
</ul>
<p>In the lib directory, create an folder containing the following jar coming from the glassfish lib directory :</p>
<ul>
<li>appserv-admin.jar</li>
<li> appserv-deployment-client.jar</li>
<li> appserv-rt.jar</li>
<li> javaee.jar</li>
</ul>
<p>Edit the nblibraries.properties file the lib directory and add the following lines :</p>
<p>libs.richfaces.classpath=\<br />
${base}/richfaces/commons-beanutils-1.7.0.jar;\<br />
${base}/richfaces/commons-collections-3.2.jar;\<br />
${base}/richfaces/commons-digester-1.8.jar;\<br />
${base}/richfaces/commons-logging-1.0.4.jar;\<br />
${base}/richfaces/jhighlight-1.0.jar;\<br />
${base}/richfaces/richfaces-api-3.3.3.Final.jar;\<br />
${base}/richfaces/richfaces-impl-3.3.3.Final.jar;\<br />
${base}/richfaces/richfaces-impl-jsf2-3.3.3.Final.jar;\<br />
${base}/richfaces/richfaces-ui-3.3.3.Final.jar<br />
libs.ejbcli.classpath=\<br />
${base}/ejbcli/appserv-admin.jar;\<br />
${base}/ejbcli/appserv-deployment-client.jar;\<br />
${base}/ejbcli/appserv-rt.jar;\<br />
${base}/ejbcli/javaee.jar</p>
<p>In NetBeans, right-click properties on the project&#8217;s libraries and add richfaces and ejbcli.</p>
<p>Edit the web.xml file and add the following lines to configure RichFaces :</p>
<p><pre class="brush: xml;">

&lt;context-param&gt;
 &lt;param-name&gt;org.richfaces.SKIN&lt;/param-name&gt;
 &lt;param-value&gt;blueSky&lt;/param-value&gt;
 &lt;/context-param&gt;
 &lt;context-param&gt;
 &lt;param-name&gt;org.richfaces.CONTROL_SKINNING&lt;/param-name&gt;
 &lt;param-value&gt;enable&lt;/param-value&gt;
 &lt;/context-param&gt;
 &lt;filter&gt;
 &lt;display-name&gt;RichFaces Filter&lt;/display-name&gt;
 &lt;filter-name&gt;richfaces&lt;/filter-name&gt;
 &lt;filter-class&gt;org.ajax4jsf.Filter&lt;/filter-class&gt;
 &lt;/filter&gt;
 &lt;filter-mapping&gt;
 &lt;filter-name&gt;richfaces&lt;/filter-name&gt;
 &lt;servlet-name&gt;Faces Servlet&lt;/servlet-name&gt;
 &lt;dispatcher&gt;REQUEST&lt;/dispatcher&gt;
 &lt;dispatcher&gt;FORWARD&lt;/dispatcher&gt;
 &lt;dispatcher&gt;INCLUDE&lt;/dispatcher&gt;
 &lt;/filter-mapping&gt;

</pre></p>
<p>Modify the welcomeJSF.jsp file like this :</p>
<p><pre class="brush: xml;">
&lt;%@page contentType=&quot;text/html&quot; pageEncoding=&quot;UTF-8&quot;%&gt;

&lt;%@taglib prefix=&quot;f&quot; uri=&quot;http://java.sun.com/jsf/core&quot;%&gt;
&lt;%@taglib prefix=&quot;h&quot; uri=&quot;http://java.sun.com/jsf/html&quot;%&gt;
&lt;%@taglib prefix=&quot;a4j&quot; uri=&quot;http://richfaces.org/a4j&quot;%&gt;
&lt;%@taglib prefix=&quot;rich&quot; uri=&quot;http://richfaces.org/rich&quot;%&gt;

&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;
 &quot;http://www.w3.org/TR/html4/loose.dtd&quot;&gt;

&lt;html&gt;
 &lt;head&gt;
 &lt;title&gt;PKB Login&lt;/title&gt;
 &lt;/head&gt;
 &lt;body&gt;
 &lt;f:view&gt;
 &lt;a4j:form&gt;
 &lt;rich:panel header=&quot;PKB Login&quot; style=&quot;width: 315px&quot;&gt;
 &lt;h:outputText value=&quot;#{user.name}&quot; /&gt;
 &lt;/rich:panel&gt;
 &lt;/a4j:form&gt;
 &lt;/f:view&gt;
 &lt;/body&gt;
&lt;/html&gt;
</pre></p>
<p>Create a new JSF managed bean pkb.ejb.cli.User :</p>
<p><pre class="brush: java;">
package pkb.ejb.cli;

import com.sun.appserv.security.ProgrammaticLogin;
import java.util.Properties;
import javax.naming.*;
import pkb.ejb.srv.*;

public class User {

 private String name =&quot;aaa&quot; ;

 /** Creates a new instance of User */
 public User() {
 }

 public String getName() {
 return name;
 }

 public void setName(String name) throws NamingException {
 this.name = name;
 Properties props = new Properties();
 props.setProperty(&quot;java.naming.factory.initial&quot;,
 &quot;com.sun.enterprise.naming.SerialInitContextFactory&quot;);
 props.setProperty(&quot;java.naming.factory.url.pkgs&quot;,
 &quot;com.sun.enterprise.naming&quot;);
 props.setProperty(&quot;java.naming.factory.state&quot;,
 &quot;com.sun.corba.ee.impl.presentation.rmi.JNDIStateFactoryImpl&quot;);
 props.setProperty(&quot;org.omg.CORBA.ORBInitialHost&quot;, &quot;localhost&quot;);
 props.setProperty(&quot;org.omg.CORBA.ORBInitialPort&quot;, &quot;3700&quot;);
 ProgrammaticLogin pl1 = new ProgrammaticLogin();
 pl1.login(&quot;user1&quot;,&quot;123&quot;);
 InitialContext ic = new InitialContext(props);
 UserBeanRemote ubr1 = (UserBeanRemote) ic.lookup(&quot;pkb.ejb.srv.UserBeanRemote&quot;);
 this.name = ubr1.getName();
 }

}
</pre></p>
<p>Edit the faces-config.xml like this :</p>
<p><pre class="brush: xml;">
&lt;?xml version='1.0' encoding='UTF-8'?&gt;
&lt;faces-config version=&quot;1.2&quot;
 xmlns=&quot;http://java.sun.com/xml/ns/javaee&quot;
 xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
 xsi:schemaLocation=&quot;http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_1_2.xsd&quot;&gt;
 &lt;managed-bean&gt;
 &lt;managed-bean-name&gt;user&lt;/managed-bean-name&gt;
 &lt;managed-bean-class&gt;pkb.ejb.cli.User&lt;/managed-bean-class&gt;
 &lt;managed-bean-scope&gt;request&lt;/managed-bean-scope&gt;
 &lt;managed-property&gt;
 &lt;property-name&gt;name&lt;/property-name&gt;
 &lt;property-class&gt;java.lang.String&lt;/property-class&gt;
 &lt;value/&gt;
 &lt;/managed-property&gt;
 &lt;/managed-bean&gt;
&lt;/faces-config&gt;
</pre></p>
<p>Create a new EJB module project.<br />
Add this project to the libraries of the web application project.<br />
Create a new session bean pkb.ejb.srv.UserBean with remote interface.<br />
Add a business method getName to the bean.<br />
Edit the UserBean class :</p>
<p><pre class="brush: java;">
package pkb.ejb.srv;

import javax.annotation.security.DeclareRoles;
import javax.annotation.security.RolesAllowed;
import javax.ejb.Stateless;

@Stateless
@DeclareRoles(&quot;admin&quot;)
@RolesAllowed(&quot;admin&quot;)
public class UserBean implements UserBeanRemote {

 public String getName() {
 return &quot;plout&quot;;
 }

}
</pre></p>
<p>Add the user user1 belonging to an admin group in the file realm of Glassfish.</p>
<p>Create a sun-ejb-jar.xml file in src/conf with the following content to map the user and use SSL :</p>
<p><pre class="brush: xml;">

&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;

&lt;!DOCTYPE sun-ejb-jar PUBLIC &quot;-//Sun Microsystems, Inc.//DTD Application Server 9.0 EJB 3.0//EN&quot; &quot;http://www.sun.com/software/appserver/dtds/sun-ejb-jar_3_0-0.dtd&quot;&gt;
&lt;sun-ejb-jar&gt;
    &lt;security-role-mapping&gt;
        &lt;role-name&gt;admin&lt;/role-name&gt;
        &lt;group-name&gt;admin&lt;/group-name&gt;
    &lt;/security-role-mapping&gt;
    &lt;ior-security-config&gt;
            &lt;transport-config&gt;
                    &lt;integrity&gt;required&lt;/integrity&gt;
                    &lt;confidentiality&gt;required&lt;/confidentiality&gt;
                    &lt;establish-trust-in-target&gt;supported&lt;/establish-trust-in-target&gt;
                    &lt;establish-trust-in-client&gt;none&lt;/establish-trust-in-client&gt;
            &lt;/transport-config&gt;
            &lt;as-context&gt;
                    &lt;auth-method&gt;username_password&lt;/auth-method&gt;
                    &lt;realm&gt;default&lt;/realm&gt;
                    &lt;required&gt;true&lt;/required&gt;
            &lt;/as-context&gt;
            &lt;sas-context&gt;
                    &lt;caller-propagation&gt;none&lt;/caller-propagation&gt;
            &lt;/sas-context&gt;
    &lt;/ior-security-config&gt;
&lt;/sun-ejb-jar&gt;

</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/326/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/326/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/326/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=326&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/12/11/secure-remote-ejb-and-richfaces-with-netbeans-6-9-1-and-glassfish-2-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Create tablespace</title>
		<link>http://yorakb.wordpress.com/2010/09/30/create-tablespace/</link>
		<comments>http://yorakb.wordpress.com/2010/09/30/create-tablespace/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 14:47:39 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=324</guid>
		<description><![CDATA[CREATE TABLESPACE 4BIGSEG DATAFILE &#8216;+DG1&#8242; SIZE 100M LOGGING EXTENT MANAGEMENT LOCAL UNIFORM SIZE 10M SEGMENT SPACE MANAGEMENT AUTO ; CREATE TABLESPACE 4OTHERSEG DATAFILE &#8216;+DG1&#8242; SIZE 100M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO ;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=324&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>CREATE TABLESPACE 4BIGSEG DATAFILE &#8216;+DG1&#8242; SIZE 100M LOGGING EXTENT MANAGEMENT LOCAL UNIFORM SIZE 10M SEGMENT SPACE MANAGEMENT AUTO ;<br />
CREATE TABLESPACE 4OTHERSEG DATAFILE &#8216;+DG1&#8242; SIZE 100M LOGGING EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO ;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/324/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/324/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/324/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=324&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/09/30/create-tablespace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Column usage for histogram size computing</title>
		<link>http://yorakb.wordpress.com/2010/09/28/column-usage-for-histogram-size-computing/</link>
		<comments>http://yorakb.wordpress.com/2010/09/28/column-usage-for-histogram-size-computing/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 13:59:24 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=320</guid>
		<description><![CDATA[select * from sys.col_usage$ ;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=320&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>select * from sys.col_usage$ ;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/320/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=320&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/09/28/column-usage-for-histogram-size-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Get all plans of an SQL id</title>
		<link>http://yorakb.wordpress.com/2010/09/28/get-all-plans-of-an-sql-id/</link>
		<comments>http://yorakb.wordpress.com/2010/09/28/get-all-plans-of-an-sql-id/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 13:36:09 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=317</guid>
		<description><![CDATA[select * from table(dbms_xplan.display_cursor(&#8221;,null,&#8217;ADVANCED&#8217;);<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=317&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>select * from table(dbms_xplan.display_cursor(&#8221;,null,&#8217;ADVANCED&#8217;); </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/317/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/317/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/317/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=317&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/09/28/get-all-plans-of-an-sql-id/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>File statistics displayed in histogram (version &gt;= 10gR1)</title>
		<link>http://yorakb.wordpress.com/2010/09/28/file-statistics-displayed-in-histogram/</link>
		<comments>http://yorakb.wordpress.com/2010/09/28/file-statistics-displayed-in-histogram/#comments</comments>
		<pubDate>Tue, 28 Sep 2010 08:12:59 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=314</guid>
		<description><![CDATA[select h.singleblkrdtim_milli, sum(h.singleblkrds) from v$file_histogram h group by h.singleblkrdtim_milli order by 1;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=314&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>select h.singleblkrdtim_milli, sum(h.singleblkrds) from v$file_histogram h  group by h.singleblkrdtim_milli order by 1;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/314/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=314&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/09/28/file-statistics-displayed-in-histogram/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Delete all shema objects</title>
		<link>http://yorakb.wordpress.com/2010/09/13/delete-shema-objects/</link>
		<comments>http://yorakb.wordpress.com/2010/09/13/delete-shema-objects/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 09:58:30 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
		
		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=308</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=308&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: sql;">
declare
	cursor c_get_objects is
		select owner, object_type,'&quot;'||object_name||'&quot;'||decode(object_type,'TABLE' ,' cascade constraints',null) obj_name 
		from dba_objects
		where object_type in ('TABLE','VIEW','PACKAGE','SEQUENCE','PROCEDURE','FUNCTION', 'SYNONYM', 'MATERIALIZED VIEW')
		and owner in ('DMADMIN')
		order by object_type;
	cursor c_get_objects_type is 
		select owner, object_type, '&quot;'||object_name||'&quot;' obj_name 
		from dba_objects 
		where object_type in ('TYPE')
		and owner in ('DMADMIN') ;
begin
	for object_rec in c_get_objects 
	loop
		execute immediate ('drop ' || object_rec.object_type || ' ' || object_rec.owner || '.' ||object_rec.obj_name);
	end loop;
	for object_rec in c_get_objects_type 
	loop
		begin 
			execute immediate ('drop '||object_rec.object_type || ' ' || object_rec.owner ||'.' || object_rec.obj_name);
		end;
	end loop;
end;
/
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/308/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/308/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/308/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=308&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/09/13/delete-shema-objects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Silent database creation in RAC with ASM</title>
		<link>http://yorakb.wordpress.com/2010/08/17/silent-database-creation-in-rac-with-asm/</link>
		<comments>http://yorakb.wordpress.com/2010/08/17/silent-database-creation-in-rac-with-asm/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 15:16:24 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=294</guid>
		<description><![CDATA[[ 10gR2 ] dbca -silent -createDatabase -templateName General_Purpose.dbc -gdbName B01 -sid B01 -SysPassword oracle -SystemPassword oracle -emConfiguration NONE -storageType ASM -asmSysPassword oracle -diskGroupName DG1 -characterSet ALU32UTF8 -memoryPercentage 40 -nodelist sdb01<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=294&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>[ 10gR2 ]</p>
<p>dbca -silent -createDatabase -templateName General_Purpose.dbc -gdbName B01 -sid B01 -SysPassword oracle -SystemPassword oracle -emConfiguration NONE -storageType ASM -asmSysPassword oracle -diskGroupName DG1 -characterSet ALU32UTF8 -memoryPercentage 40 -nodelist sdb01 </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/294/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/294/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/294/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=294&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/08/17/silent-database-creation-in-rac-with-asm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Shared-block ratio per instance in RAC</title>
		<link>http://yorakb.wordpress.com/2010/08/06/shared-block-ratio-per-instance-in-rac/</link>
		<comments>http://yorakb.wordpress.com/2010/08/06/shared-block-ratio-per-instance-in-rac/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 13:26:12 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Performance]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=287</guid>
		<description><![CDATA[select round(100*a.shared_blocks/b.total_blocks) shared_block_percent from ( select count(*) shared_blocks from v$bh where status = &#8216;scur&#8217; ) a cross join ( select count(*) total_blocks from v$bh ) b ;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=287&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>select round(100*a.shared_blocks/b.total_blocks) shared_block_percent from (<br />
  select count(*) shared_blocks from v$bh where status = &#8216;scur&#8217;<br />
) a cross join (<br />
  select count(*) total_blocks from v$bh<br />
) b ;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/287/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/287/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/287/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=287&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/08/06/shared-block-ratio-per-instance-in-rac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
		<item>
		<title>Check if PSU is applied</title>
		<link>http://yorakb.wordpress.com/2010/08/03/check-if-psu-is-applied/</link>
		<comments>http://yorakb.wordpress.com/2010/08/03/check-if-psu-is-applied/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 09:53:59 +0000</pubDate>
		<dc:creator>yorakb</dc:creator>
				<category><![CDATA[Administration]]></category>

		<guid isPermaLink="false">http://yorakb.wordpress.com/?p=284</guid>
		<description><![CDATA[select * from registry$history ;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=284&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>select * from registry$history ;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/yorakb.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/yorakb.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/yorakb.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/yorakb.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/yorakb.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/yorakb.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/yorakb.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/yorakb.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/yorakb.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/yorakb.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/yorakb.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/yorakb.wordpress.com/284/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/yorakb.wordpress.com/284/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/yorakb.wordpress.com/284/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=yorakb.wordpress.com&amp;blog=9825434&amp;post=284&amp;subd=yorakb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://yorakb.wordpress.com/2010/08/03/check-if-psu-is-applied/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e6ee0aa6c4a40bb7cf8f646753b190d1?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">yorakb</media:title>
		</media:content>
	</item>
	</channel>
</rss>
