<?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>The great grandson of Husnu Sensoy</title>
	<atom:link href="http://husnusensoy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://husnusensoy.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sat, 27 Apr 2013 11:52:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='husnusensoy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>The great grandson of Husnu Sensoy</title>
		<link>http://husnusensoy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://husnusensoy.wordpress.com/osd.xml" title="The great grandson of Husnu Sensoy" />
	<atom:link rel='hub' href='http://husnusensoy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>How to Move USER_SDO_GEOM_METADATA like a Grandpa</title>
		<link>http://husnusensoy.wordpress.com/2013/04/27/how-to-move-user_sdo_geom_metadata-like-a-grandpa/</link>
		<comments>http://husnusensoy.wordpress.com/2013/04/27/how-to-move-user_sdo_geom_metadata-like-a-grandpa/#comments</comments>
		<pubDate>Sat, 27 Apr 2013 11:48:51 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Best Practice]]></category>
		<category><![CDATA[Spatial]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1409</guid>
		<description><![CDATA[Sometimes moving a small amount of data in Oracle database requires more work than the actual task you need to complete. DBAs always have their tools (PL/SQL Developer Text Importer is my favorite one) to move a small amount of data between databases. But when it comes to nested tables this might be a bit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1409&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Sometimes moving a small amount of data in Oracle database requires more work than the actual task you need to complete. DBAs always have their tools (PL/SQL Developer Text Importer is my favorite one) to move a small amount of data between databases.<br />
But when it comes to nested tables this might be a bit challenging. USER_SDO_GEOM_METADATA table (for those of you who are not familiar with it, it is the catalog information of spatial layers in an Oracle database) has no exception to that. Here how it is easy to handle it<br />
The structure of USER_SDO_GEOM_METADATA table has the following structure</p>
<pre class="brush: sql; title: ; notranslate">
SQL&gt; desc user_sdo_geom_metadata
 Name					   Null?    Type
 ----------------------------------------- -------- ----------------------------
 TABLE_NAME				   NOT NULL VARCHAR2(32)
 COLUMN_NAME				   NOT NULL VARCHAR2(1024)
 DIMINFO					    MDSYS.SDO_DIM_ARRAY
 SRID						    NUMBER
</pre>
<p>Obviously DIMINFO column is the problematic part since it is in SDO_DIM_ARRAY type. Now create a temporary table by unfolding this nested table at the source database site.</p>
<pre class="brush: sql; title: ; notranslate">
CREATE TABLE temp_metadata AS 
  SELECT t.table_name, 
         t.column_name, 
         d.*, 
         t.srid 
  FROM   user_sdo_geom_metadata t, 
         TABLE(t.diminfo) d; 
</pre>
<p>Once you are done check the structure of temp_metadata table which only contains primitive SQL types for the columns</p>
<pre class="brush: sql; title: ; notranslate">
SQL&gt; desc temp_metadata
 Name					   Null?    Type
 ----------------------------------------- -------- ----------------------------
 TABLE_NAME					    VARCHAR2(32)
 COLUMN_NAME					    VARCHAR2(1024)
 SDO_DIMNAME					    VARCHAR2(64)
 SDO_LB 					    NUMBER
 SDO_UB 					    NUMBER
 SDO_TOLERANCE					    NUMBER
 SRID						    NUMBER
</pre>
<p>Choose your favorite tool to move this table to the target database since it contains just a few rows. Then as the final step import this data into USER_SDO_GEOM_METADATA table at the target database (Ensure that there is no other record with the same table_name.column_name key on the target USER_SDO_GEOM_METADATA table otherwise trigger on it will warn you)</p>
<pre class="brush: sql; title: ; notranslate">
insert into user_sdo_geom_metadata
SELECT m.table_name, m.column_name,
   CAST(MULTISET(SELECT sdo_dimname,sdo_lb,SDO_UB,sdo_tolerance
                 FROM temp_metadata n
                 WHERE n.table_name = m.table_name and n.column_name = m.column_name)
   AS SDO_DIM_ARRAY) as diminfo,
   m.srid
FROM (select distinct table_name,column_name,srid from temp_metadata) m;
commit;
</pre>
<p>You are done! Check everything works fine at the application site.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1409&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2013/04/27/how-to-move-user_sdo_geom_metadata-like-a-grandpa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>Physical vs Logical Blocksize on ASMLib Devices</title>
		<link>http://husnusensoy.wordpress.com/2013/02/16/physical-vs-logical-blocksize-on-asmlib-devices/</link>
		<comments>http://husnusensoy.wordpress.com/2013/02/16/physical-vs-logical-blocksize-on-asmlib-devices/#comments</comments>
		<pubDate>Sat, 16 Feb 2013 00:32:08 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[ASM]]></category>
		<category><![CDATA[asmlib]]></category>
		<category><![CDATA[Oracle Linux]]></category>
		<category><![CDATA[uek]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1396</guid>
		<description><![CDATA[As you all may know, ASMLib is a recommended module for Oracle databases running on Linux platforms and it is an embedded module for UEK (Oracle Unbreakable Kernel) users. Oracle announced that (two years ago or so) they will no longer maintain ASMLib for Red Hat compatible kernel but this does not mean that they [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1396&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>As you all may know, ASMLib is a recommended module for Oracle databases running on Linux platforms and it is an embedded module for UEK (Oracle Unbreakable Kernel) users. Oracle announced that (two years ago or so) they will no longer maintain ASMLib for Red Hat compatible kernel but this does not mean that they abandon the project, rather it is mainly related to the effort they need to put in maintaining the module for multiple kernel versions.</p>
<p>A while ago, Oracle added a new feature to ASMLib allowing ASM devices to choose between physical or logical block sizes in I/O operations. This should be, I believe, a fail-back mechanism for SSD devices used as ASM disks. Many SSD devices use 4K block size however Linux still uses default 512 bytes logical block size for those devices in the same way it does for motor disks. In early releases of ASMLib (<code>oracleasm-support-2.1.7</code> and earlier), ASM uses physical block size (4K for SSDs). This is still the default behavior in <code>oracleasm-support-2.1.8</code> but now sysadmin can choose between physical and logical blocksize by using <code>[-b|-p]</code> switches in <code>oracleasm-configure.sh</code> script.</p>
<ul>
<li><strong>-b|&#8212;logical-blocks</strong> sets logical blocksize usage</li>
<li><strong>-p|&#8212;physical-blocks</strong> set physical blocksize usage</li>
</ul>
<p>Those switches set <code>/sys/module/oracleasm/parameters/use_logical_block_size</code> which is default to be <code>false</code> (use physical blocksize). So that <code>asmlib</code> module can use the value to decide which block size to use.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1396/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1396/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1396&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2013/02/16/physical-vs-logical-blocksize-on-asmlib-devices/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>Upgrade to Oracle Enterprise Linux 5.9 and/so UEK2</title>
		<link>http://husnusensoy.wordpress.com/2013/02/13/upgrade-to-oracle-enterprise-linux-5-9-andso-uek2/</link>
		<comments>http://husnusensoy.wordpress.com/2013/02/13/upgrade-to-oracle-enterprise-linux-5-9-andso-uek2/#comments</comments>
		<pubDate>Wed, 13 Feb 2013 09:41:37 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Oracle Linux]]></category>
		<category><![CDATA[uek2]]></category>
		<category><![CDATA[yum repository]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1364</guid>
		<description><![CDATA[I have upgraded one of my Oracle Linux boxes to Oracle Linux Release 5.9 which introduces several new things (Release Notes). Just to mention three of them java-1.7.0-openjdk firefox 10 (Although we have discuss to install latest version of it in Oracle Enterprise Linux for Home User: Install Latest Firefox Version ) uek2 vanilla kernel [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1364&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have upgraded one of my Oracle Linux boxes to Oracle Linux Release 5.9 which introduces several new things (<a title="Release Notes" href="https://oss.oracle.com/ol5/docs/RELEASE-NOTES-U9-en.html">Release Notes</a>). Just to mention three of them</p>
<ul>
<li>java-1.7.0-openjdk</li>
<li>firefox 10 (Although we have discuss to install latest version of it in <a href="http://husnusensoy.wordpress.com/2012/11/21/oracle-enterprise-linux-for-home-user-install-latest-firefox-version">Oracle Enterprise Linux for Home User: Install Latest Firefox Version</a> )</li>
<li>uek2 vanilla kernel branched from Linux Kernel Release 3.0.36
<ul>
<li>BTRFS</li>
<li>Transparent Huge Pages</li>
</ul>
</li>
</ul>
<p>Download and update yum repository file</p>
<pre class="brush: bash; title: ; notranslate">
[root@localhost yum.repos.d]$ cd /etc/yum.repos.d
[root@localhost yum.repos.d]$ wget http://public-yum.oracle.com/public-yum-el5.repo
[root@localhost yum.repos.d]$ mv public-yum-el5.repo.1 public-yum-el5.repo
[root@localhost yum.repos.d]$ grep -B 5 enabled=1 public-yum-el5.repo
[el5_latest]
name=Oracle Linux $releasever Latest ($basearch)
baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL5/latest/$basearch/
gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
gpgcheck=1
enabled=1
--
[ol5_u9_base]
name=Oracle Linux $releasever Update 9 installation media copy ($basearch)
baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL5/9/base/$basearch/
gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
gpgcheck=1
enabled=1
--
[ol5_UEK_latest]
name=Latest Unbreakable Enterprise Kernel for Oracle Linux $releasever ($basearch)
baseurl=http://public-yum.oracle.com/repo/OracleLinux/OL5/UEK/latest/$basearch/
gpgkey=http://public-yum.oracle.com/RPM-GPG-KEY-oracle-el5
gpgcheck=1
enabled=1
</pre>
<p>We are ready to upgrade</p>
<pre class="brush: bash; title: ; notranslate">
[root@localhost yum.repos.d]$ yum update
</pre>
<p>Rebounce Linux</p>
<pre class="brush: bash; title: ; notranslate">
[root@localhost yum.repos.d]$ reboot
</pre>
<h4>Before</h4>
<p>Check Oracle Linux Version</p>
<pre class="brush: bash; title: ; notranslate">
[oracle@localhost ~]$ cat /etc/oracle-release
Oracle Linux Server release 5.8
</pre>
<p>Check kernel version</p>
<pre class="brush: bash; title: ; notranslate">
[oracle@localhost ~]$ uname -a
Linux localhost.localdomain 2.6.32-300.32.2.el5uek #1 SMP Tue Aug 28 10:15:29 EDT 2012 x86_64 x86_64 x86_64 GNU/Linux
</pre>
<p>Check your memory page size</p>
<pre class="brush: bash; title: ; notranslate">
[oracle@localhost ~]$ getconf PAGESIZE
4096
</pre>
<h4>After</h4>
<p>Once you are done after reboot, check Oracle Linux Version</p>
<pre class="brush: bash; title: ; notranslate">
[oracle@localhost ~]$ cat /etc/oracle-release
Oracle Linux Server release 5.9
</pre>
<p>Check kernel version</p>
<pre class="brush: bash; title: ; notranslate">
[oracle@localhost ~]$ uname -a
Linux localhost.localdomain 2.6.39-300.28.1.el5uek #1 SMP Tue Feb 5 10:15:29 PST 2013 x86_64 x86_64 x86_64 GNU/Linux
</pre>
<p>Check your memory page size</p>
<pre class="brush: bash; title: ; notranslate">
[oracle@localhost ~]$ getconf PAGESIZE
4096
</pre>
<p>Ooops!!! No change ?</p>
<pre class="brush: bash; title: ; notranslate">
[root@localhost ~]$ cat /sys/kernel/mm/transparent_hugepage/enabled 
[always] madvise never
</pre>
<p>Actually transparent huge page allocation is enabled but it deserves a separate discussion</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1364/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1364/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1364&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2013/02/13/upgrade-to-oracle-enterprise-linux-5-9-andso-uek2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Disable Automatic SGA Management on 11g Release 2</title>
		<link>http://husnusensoy.wordpress.com/2013/02/12/how-to-disable-automatic-sga-management-on-11g-release-2/</link>
		<comments>http://husnusensoy.wordpress.com/2013/02/12/how-to-disable-automatic-sga-management-on-11g-release-2/#comments</comments>
		<pubDate>Tue, 12 Feb 2013 16:18:47 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[11g Release 2]]></category>
		<category><![CDATA[pool size]]></category>
		<category><![CDATA[SGA]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1350</guid>
		<description><![CDATA[Login database using Dump the pfile using existing spfile Oracle will generate implicit parameters defining current sizing of the memory regions in SGA and write them at the top of generated pfile Edit the file to disable AMM and enable static SGA configuration by simply removing memory_target, oracle_base and shared_io_pool_size parameters and doing some make [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1350&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Login database using </p>
<pre class="brush: bash; title: ; notranslate">
sqlplus / as sysdba
</pre>
<p>Dump the pfile using existing spfile </p>
<pre class="brush: sql; title: ; notranslate">
SQL&gt; create pfile='/home/oracle/Desktop/init.ora' from spfile;

File created.
</pre>
<p>Oracle will generate implicit parameters defining current sizing of the memory regions in SGA and write them at the top of generated pfile </p>
<pre class="brush: sql; title: ; notranslate">
orcl.__db_cache_size=79691776
orcl.__java_pool_size=4194304
orcl.__large_pool_size=4194304
orcl.__oracle_base='/u01/app/oracle'#ORACLE_BASE set from environment
orcl.__pga_aggregate_target=142606336
orcl.__sga_target=272629760
orcl.__shared_io_pool_size=0
orcl.__shared_pool_size=167772160
orcl.__streams_pool_size=4194304
.
.
.
*.memory_target=414187520
.
.
.
</pre>
<p>Edit the file to disable AMM and enable static SGA configuration by simply removing <code>memory_target</code>, <code>oracle_base</code> and <code>shared_io_pool_size</code> parameters and doing some make up</p>
<pre class="brush: sql; title: ; notranslate">
*.db_cache_size=79691776
*.java_pool_size=4194304
*.large_pool_size=4194304
*.pga_aggregate_target=142606336
*.sga_target=272629760
*.shared_pool_size=167772160
*.streams_pool_size=4194304
.
.
.
</pre>
<p>Rebounce database instance by using modified pfile. </p>
<pre class="brush: sql; title: ; notranslate">
SQL&gt; shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.

SQL&gt; startup pfile='/home/oracle/Desktop/init.ora';
ORACLE instance started.

Total System Global Area  271400960 bytes
Fixed Size                  2227544 bytes
Variable Size             180355752 bytes
Database Buffers           83886080 bytes
Redo Buffers                4931584 bytes
Database mounted.
Database opened.
</pre>
<p>Once you ensure that new pfile works, recreate new spfile using this pfile (refer to <strong>How to move ASM spfile to a different disk group [ID 1082943.1]</strong> if your target is ASM diskgroup)</p>
<pre class="brush: sql; title: ; notranslate">
SQL&gt; create spfile using pfile='/home/oracle/Desktop/init.ora';

File created.
</pre>
<p>Finally rebounce the database by using new spfile</p>
<pre class="brush: sql; title: ; notranslate">
SQL&gt; startup force;
ORACLE instance started.

Total System Global Area  271400960 bytes
Fixed Size                  2227544 bytes
Variable Size             180355752 bytes
Database Buffers           83886080 bytes
Redo Buffers                4931584 bytes
Database mounted.
Database opened.
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1350/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1350/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1350&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2013/02/12/how-to-disable-automatic-sga-management-on-11g-release-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>Slides and Offline Recording of my NYOUG Webinar</title>
		<link>http://husnusensoy.wordpress.com/2013/01/07/slides-and-offline-recording-of-my-nyoug-webinar/</link>
		<comments>http://husnusensoy.wordpress.com/2013/01/07/slides-and-offline-recording-of-my-nyoug-webinar/#comments</comments>
		<pubDate>Mon, 07 Jan 2013 18:23:13 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Exadata]]></category>
		<category><![CDATA[Oracle ZFS Appliance]]></category>
		<category><![CDATA[presentation]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1344</guid>
		<description><![CDATA[I have announced my webinar on Oracle ZFS Storage Appliance for Exadata Backup &#38; Recovery in NYOUG DBA webinar series. You can download webinar slides and voice recod from NYOUG web site<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1344&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>I have announced my webinar on Oracle ZFS Storage Appliance for Exadata Backup &amp; Recovery in NYOUG DBA webinar series. You can download webinar slides and voice recod from <a href="http://nyoug.org/meetings_SIG.htm#DBA2012-Dec-14">NYOUG web site</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1344/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1344/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1344&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2013/01/07/slides-and-offline-recording-of-my-nyoug-webinar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>Grow Oracle Linux Root Filesystem</title>
		<link>http://husnusensoy.wordpress.com/2012/12/31/grow-oracle-linux-root-filesystem/</link>
		<comments>http://husnusensoy.wordpress.com/2012/12/31/grow-oracle-linux-root-filesystem/#comments</comments>
		<pubDate>Sun, 30 Dec 2012 23:46:28 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle Linux]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1323</guid>
		<description><![CDATA[It is always the case that in my Linux VM installations I run out of root file system space and need to grow it (I can hear you experienced admin, I should create another filesystem for my use and not use root file system for my joy). Here are the steps to grow root filesystem for [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1323&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It is always the case that in my Linux VM installations I run out of root file system space and need to grow it (I can hear you <em>experienced admin, </em>I should create another filesystem for my use and not use root file system for my joy). Here are the steps to grow root filesystem for Oracle Linux running on VMware:</p>
<p>Click on the wrench symbol to go to your virtual machine configuration menu</p>
<p style="text-align:center;"><a href="http://husnusensoy.wordpress.com/2012/12/31/grow-oracle-linux-root-filesystem/screen-shot-2012-12-31-at-1-02-46-am/" rel="attachment wp-att-1324"><img class="aligncenter" alt="Screen Shot 2012-12-31 at 1.02.46 AM" src="http://husnusensoy.files.wordpress.com/2012/12/screen-shot-2012-12-31-at-1-02-46-am.png?w=497&#038;h=311" width="497" height="311" /></a></p>
<p>Choose <em>Hard Disk (SCSI)</em> menu to increase the size of an availabe virtual disk (in this case your root file system disk)</p>
<p style="text-align:left;"><a href="http://husnusensoy.wordpress.com/2012/12/31/grow-oracle-linux-root-filesystem/screen-shot-2012-12-31-at-1-07-12-am/" rel="attachment wp-att-1325"><img class="aligncenter" alt="Screen Shot 2012-12-31 at 1.07.12 AM" src="http://husnusensoy.files.wordpress.com/2012/12/screen-shot-2012-12-31-at-1-07-12-am.png?w=478&#038;h=298" width="478" height="298" /></a>Grow your virtual disk to a proper size (In this case I grow it form 28GB to 34GB)</p>
<p style="text-align:center;"><img class="wp-image-1326 aligncenter" alt="Screen Shot 2012-12-31 at 1.07.23 AM" src="http://husnusensoy.files.wordpress.com/2012/12/screen-shot-2012-12-31-at-1-07-23-am.png?w=478&#038;h=298" width="478" height="298" /></p>
<p>Now you can start your Oracle Linux on VM*.</p>
<p>First step at guest OS (Oracle Linux) is to grow disk partition size using fdisk. Here are the steps assuming that your root file system is on <em>/dev/sda2</em> partition</p>
<ol>
<li><span style="line-height:13px;">fdisk /dev/sda</span></li>
<li>d (to delete)</li>
<li>2 (to delete partition 2)</li>
<li>n (to create a new partition)</li>
<li>p (to create a new partition with primary type)</li>
<li>2 (to create a new primary partition with id 2)</li>
<li>Accept all defaults (to create a new primary partition with default offset and fully covering virtual disk you have already provisioned)</li>
<li>w (write partition table)</li>
</ol>
<p>Once you are done with disk partition modification <strong><span style="text-decoration:underline;">rebounce Oracle Linux</span></strong> to ensure partition tables are read by Linux.</p>
<p>Once the guest OS is back, resize physical volume using pvresize. We will add 6GB (slightly less maybe) to existing physical partition using pvresize command</p>
<pre class="brush: bash; title: ; notranslate">
pvresize --setphysicalvolumesize 31G /dev/sda2
</pre>
<p>Now we can grow logical volume by 6GB</p>
<pre class="brush: bash; title: ; notranslate">
lvresize -L +6G /dev/VolGroup00/LogVol00
</pre>
<p>Final step is to grow file system online using resize2fs</p>
<pre class="brush: bash; title: ; notranslate">
resize2fs /dev/VolGroup00/LogVol00
</pre>
<p>You are done. You can continue filling root file system  :)</p>
<p>* Before starting it is a good decision to protect your existing VM guest by using VMware snapshots.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1323/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1323/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1323&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2012/12/31/grow-oracle-linux-root-filesystem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>

		<media:content url="http://husnusensoy.files.wordpress.com/2012/12/screen-shot-2012-12-31-at-1-02-46-am.png" medium="image">
			<media:title type="html">Screen Shot 2012-12-31 at 1.02.46 AM</media:title>
		</media:content>

		<media:content url="http://husnusensoy.files.wordpress.com/2012/12/screen-shot-2012-12-31-at-1-07-12-am.png" medium="image">
			<media:title type="html">Screen Shot 2012-12-31 at 1.07.12 AM</media:title>
		</media:content>

		<media:content url="http://husnusensoy.files.wordpress.com/2012/12/screen-shot-2012-12-31-at-1-07-23-am.png" medium="image">
			<media:title type="html">Screen Shot 2012-12-31 at 1.07.23 AM</media:title>
		</media:content>
	</item>
		<item>
		<title>NYOUG SIG Webinar: Oracle ZFS Storage Appliance for Exadata Backup &amp; Recovery</title>
		<link>http://husnusensoy.wordpress.com/2012/11/27/nyoug-sig-webinar-oracle-zfs-storage-appliance-for-exadata-backup-recovery/</link>
		<comments>http://husnusensoy.wordpress.com/2012/11/27/nyoug-sig-webinar-oracle-zfs-storage-appliance-for-exadata-backup-recovery/#comments</comments>
		<pubDate>Tue, 27 Nov 2012 16:49:27 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Exadata]]></category>
		<category><![CDATA[Oracle ZFS Appliance]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1314</guid>
		<description><![CDATA[In Friday December 14, 2012 at 12:00 PM -1:00 PM EDT I will be giving a webinar for NYOUG SIG with the following abstract When it comes to the backup and recovery infrastructure of the Exadata Database Machine, conventional solutions often have only limited performance to keep up with Exadata throughput, whereas Oracle ZFS Storage Appliance [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1314&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>In Friday December 14, 2012 at 12:00 PM -1:00 PM EDT I will be giving a webinar for NYOUG SIG with the following abstract<br />
When it comes to the backup and recovery infrastructure of the Exadata Database Machine, conventional solutions often have only limited performance to keep up with Exadata throughput, whereas Oracle ZFS Storage Appliance can be configured as a very fast, capable, and easy-to-manage backup and recovery solution for any Exadata environment. In this session Husnu Sensoy will describe some of the configuration possibilities of the ZFS Storage Appliance to create a flexible backup and recovery environment for Exadata, as well as various tuning do&#8217;s and dont&#8217;s to maximize your backup and recovery performance.</p>
<p>Join me to hear more about ZFS Storage Appliance and Exadata.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1314/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1314/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1314&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2012/11/27/nyoug-sig-webinar-oracle-zfs-storage-appliance-for-exadata-backup-recovery/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Enterprise Linux for Home User: Install Latest Firefox Version</title>
		<link>http://husnusensoy.wordpress.com/2012/11/21/oracle-enterprise-linux-for-home-user-install-latest-firefox-version/</link>
		<comments>http://husnusensoy.wordpress.com/2012/11/21/oracle-enterprise-linux-for-home-user-install-latest-firefox-version/#comments</comments>
		<pubDate>Wed, 21 Nov 2012 19:02:08 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Oracle Linux]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1306</guid>
		<description><![CDATA[It is a joy to use Linux for any purpose. Although Oracle Linux is mainly designed for enterprise stack, a stable operating system for a technical user is always a need. However default configurations and program versions are not suitable for daily use always. One example of this is Firefox 3.0.6 available in Oracle Linux [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1306&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>It is a joy to use Linux for any purpose. Although Oracle Linux is mainly designed for enterprise stack, a stable operating system for a technical user is always a need.</p>
<p>However default configurations and program versions are not suitable for daily use always. One example of this is Firefox 3.0.6 available in Oracle Linux (or Red Hat). Here is how you can upgrade it to 17.0</p>
<p>Download <a title="Firefox" href="http://www.mozilla.org/en-US/" target="_blank">latest Firefox</a> release from Mozilla web page. Then unpack and install it by simply following.</p>
<pre class="brush: bash; title: ; notranslate">
tar -xjvf firefox-17.0.tar.bz2
cp -r firefox /opt/
ln -sf /opt/firefox/firefox /usr/bin/firefox
</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1306/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1306/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1306&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2012/11/21/oracle-enterprise-linux-for-home-user-install-latest-firefox-version/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Day 2012 Presentation</title>
		<link>http://husnusensoy.wordpress.com/2012/10/26/oracle-day-2012-presentation/</link>
		<comments>http://husnusensoy.wordpress.com/2012/10/26/oracle-day-2012-presentation/#comments</comments>
		<pubDate>Fri, 26 Oct 2012 21:39:37 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Event]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Enterprise R]]></category>
		<category><![CDATA[ODM]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1302</guid>
		<description><![CDATA[We are back from OOW 2012 and now it is time to broadcast what we learn in San Francisco. So as a TROUG Founder I will be presenting my Open World Session in Turkey this time. Join me if you wish to hear more about data mining, optimisation,etc. this time in Turkish. Here are session details: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1302&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>We are back from OOW 2012 and now it is time to broadcast what we learn in San Francisco. So as a TROUG Founder I will be presenting my Open World Session in Turkey this time. Join me if you wish to hear more about data mining, optimisation,etc. this time in Turkish.</p>
<p>Here are session details:</p>
<ul>
<li><strong>What:</strong> Veri Madenciligi Veritabaninda Yapilir: Uygulamalariyla Oracle R Enterprise ve Oracle Data Mining Opsiyonu (Database Data Mining: Practical Enterprise R and Oracle Advanced Analytics)</li>
<li><strong>When</strong>: 15th of November 2012 14:20 &#8211; 14:50</li>
<li><strong>Where</strong>: Istanbul Kongre Merkezi, Taskisla Caddesi Harbiye 34367, Istanbul/Turkiye</li>
</ul>
<p>Join me and learn that BI is not about filtering tables, rotating tables, combining and aggregating tables without knowing the actual reason of doing them <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>By the way here are other <a title="TROUG Sessions in Oracle Day 2012" href="http://www.troug.org/?p=336" target="_blank">TROUG Sessions in Oracle Day 2012</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1302/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1302/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1302&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2012/10/26/oracle-day-2012-presentation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle R Enterprise Configuration on Oracle Linux</title>
		<link>http://husnusensoy.wordpress.com/2012/10/25/oracle-r-enterprise-configuration-on-oracle-linux/</link>
		<comments>http://husnusensoy.wordpress.com/2012/10/25/oracle-r-enterprise-configuration-on-oracle-linux/#comments</comments>
		<pubDate>Thu, 25 Oct 2012 14:37:46 +0000</pubDate>
		<dc:creator>kocakahin</dc:creator>
				<category><![CDATA[Data Science]]></category>
		<category><![CDATA[11g Release 2]]></category>
		<category><![CDATA[Enterprise R]]></category>
		<category><![CDATA[Oracle Linux]]></category>
		<category><![CDATA[R]]></category>

		<guid isPermaLink="false">http://husnusensoy.wordpress.com/?p=1239</guid>
		<description><![CDATA[Before starting to deal with large volumes of data problems on Oracle R Enterprise (ORE) you need to perform a couple of configurations over your Oracle Linux and Oracle Database systems. Here is the recipe: Ensure that you have the following lines in your oracle users .bash_profile file Ensure that you have already installed libpng.x86_64 and [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1239&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Before starting to deal with large volumes of data problems on Oracle R Enterprise (ORE) you need to perform a couple of configurations over your Oracle Linux and Oracle Database systems. Here is the recipe:</p>
<ul>
<li>Ensure that you have the following lines in your oracle users .bash_profile file
<pre class="brush: bash; title: ; notranslate">
export R_HOME=/usr/lib64/R
export PATH=/usr/bin:$PATH
</pre>
</li>
<li>Ensure that you have already installed libpng.x86_64 and libpng-devel.x86_64 packages on your Oracle Linux otherwise issue to install them.
<pre class="brush: bash; title: ; notranslate">
yum install libpng.x86_64 libpng-devel.x86_64
</pre>
</li>
<li>Switch to root and issue R. Once you are in R session, install two prerequisites of ORE:
<pre class="brush: r; title: ; notranslate">
install.packages(&quot;DBI&quot;)
install.packages(&quot;png&quot;)
</pre>
</li>
<li>Ensure that your database is 11.2.0.3 otherwise refer you need to apply several database patches:</li>
<li>Go to <a title="Oracle R Enterprise" href="http://www.oracle.com/technetwork/database/options/advanced-analytics/r-enterprise/ore-downloads-1502823.html" target="_blank">Oracle R Enterprise Download Page</a> and download <em>Oracle R Enterprise Server Install for Oracle Database on Linux 64-bit (91M) and  Oracle R Enterprise Client Supporting Packages for Linux 64-bit Platform (1M) </em> (ore-server-linux-x86-64-1.1.zip and ore-supporting-linux-x86-64-1.1.zip) under <em>Oracle R Enterprise Downloads (v1.1)</em> section</li>
<li>Unzip the file by issuing
<pre class="brush: bash; title: ; notranslate">
unzip ore-server-linux-x86-64-1.1.zip ore-supporting-linux-x86-64-1.1.zip
</pre>
</li>
<li> At this point ensure that your database to support Oracle R Enterprise is up and running </li>
<li> Execute <code>install.sh</code> in order to create ORE libraries and database objects into SYS and RQSYS schemas.
<pre class="brush: bash; title: ; notranslate">
cd server
./install.sh
</pre>
<p><code><br />
Oracle R Enterprise 1.1 Server Installation.</p>
<p>Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.</p>
<p>Do you wish to proceed? [yes] </p>
<p>Checking R ................... Pass<br />
Checking R libraries ......... Pass<br />
Checking ORACLE_HOME ......... Pass<br />
Checking ORACLE_SID .......... Pass<br />
Checking sqlplus ............. Pass<br />
Checking ORE ................. Pass</p>
<p>Choosing RQSYS tablespaces<br />
  PERMANENT tablespace to use for RQSYS [SYSAUX]:<br />
  TEMPORARY tablespace to use for RQSYS [TEMP]: </p>
<p>Current configuration<br />
  R_HOME               = /usr/lib64/R<br />
  R_LIBS_USER          = /u01/app/oracle/product/11.2.0/dbhome_1/R/library<br />
  ORACLE_HOME          = /u01/app/oracle/product/11.2.0/dbhome_1<br />
  ORACLE_SID           = orcl<br />
  PERMANENT tablespace = SYSAUX<br />
  TEMPORARY tablespace = TEMP</p>
<p>Installing libraries ......... Pass<br />
Installing RQSYS ............. Pass<br />
Installing ORE packages ...... Pass<br />
Creating ORE script .......... Pass</p>
<p>NOTE: To use ORE functionality, a database user with RQROLE role,<br />
      a few more grants and synonyms is required. A complete list of<br />
      requirements is available in rquser.sql. There is also a demo<br />
      script demo_user.sh creating a new user RQUSER.</p>
<p>      To use embedded R functionality, an RQADMIN role is required.<br />
      Please, consult the documentation for more information on various<br />
      roles.</p>
<p>Done<br />
</code></p>
</li>
<li> Finally install some required R libraries/packages by using <code>install.packages</code> command in R. Ensure that user (<code>root</code> will do that) you will start R has a write permission on <code>/usr/lib64/R/library</code>
<pre class="brush: r; title: ; notranslate">
install.packages(&quot;/home/oracle/Desktop/server/ORE_1.1_R_x86_64-unknown-linux-gnu.tar.gz&quot;, repos = NULL)
install.packages(&quot;/home/oracle/Desktop/server/OREbase_1.1_R_x86_64-unknown-linux-gnu.tar.gz&quot;, repos = NULL)
install.packages(&quot;/home/oracle/Desktop/server/OREeda_1.1_R_x86_64-unknown-linux-gnu.tar.gz&quot;, repos = NULL)
install.packages(&quot;/home/oracle/Desktop/server/OREgraphics_1.1_R_x86_64-unknown-linux-gnu.tar.gz&quot;, repos = NULL)
install.packages(&quot;/home/oracle/Desktop/server/OREstats_1.1_R_x86_64-unknown-linux-gnu.tar.gz&quot;, repos = NULL)
install.packages(&quot;/home/oracle/Desktop/server/ORExml_1.1_R_x86_64-unknown-linux-gnu.tar.gz&quot;, repos = NULL)
install.packages(&quot;/home/oracle/Desktop/supporting/ROracle_1.1-2_R_x86_64-unknown-linux-gnu.tar.gz&quot;, repos = NULL)
</pre>
</li>
<li>Finally start a R session (ensure that <code>$ORACLE_HOME/lib</code> is in your <code>LD_LIBRARY_PATH</code> before starting R session) and load ORE library
<pre class="brush: r; title: ; notranslate">
library(ORE)
Loading required package: OREbase
Loading required package: ROracle
Loading required package: DBI

Attaching package: 'OREbase'

The following object(s) are masked from 'package:base':

    cbind, data.frame, eval, interaction, order, paste, pmax, pmin,
    rbind, table

Loading required package: OREstats
Loading required package: MASS
Loading required package: OREgraphics
Loading required package: OREeda
Loading required package: ORExml
</pre>
</li>
</ul>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/husnusensoy.wordpress.com/1239/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/husnusensoy.wordpress.com/1239/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=husnusensoy.wordpress.com&#038;blog=637659&#038;post=1239&#038;subd=husnusensoy&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://husnusensoy.wordpress.com/2012/10/25/oracle-r-enterprise-configuration-on-oracle-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/a336f49473f7ff0add6beba3d42aef17?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">kocakahin</media:title>
		</media:content>
	</item>
	</channel>
</rss>
