<?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/"
	>

<channel>
	<title>TheBonsai&#039;s Blog &#187; Work</title>
	<atom:link href="http://www.thebonsai.net/category/a-must-and-a-nice-one-if-its-the-right-one/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thebonsai.net</link>
	<description>About the days and nights of TheBonsai</description>
	<lastBuildDate>Sun, 06 Nov 2011 00:28:40 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>SQLNET.RECV_TIMEOUT/SEND_TIMEOUT and RMAN</title>
		<link>http://www.thebonsai.net/2011/11/02/sqlnet-recv_timeoutsend_timeout-and-rman/</link>
		<comments>http://www.thebonsai.net/2011/11/02/sqlnet-recv_timeoutsend_timeout-and-rman/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 21:47:20 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[rman]]></category>
		<category><![CDATA[RMAN-03009]]></category>
		<category><![CDATA[RMAN-10038]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=282</guid>
		<description><![CDATA[Hi there, I was analyzing some unexpected RMAN termination, a RMAN-10038/RMAN-03009 combo: RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03009: Fehler bei REFAF Befehl in c13 Kanal auf 10/31/2011 08:21:50 RMAN-10038: Datenbank-Session für Kanal c13 unerwartet beendet Nothing, not even an RMAN tracing was able to reveal more hints. The trace [...]]]></description>
			<content:encoded><![CDATA[<p>Hi there,</p>
<p>I was analyzing some unexpected RMAN termination, a RMAN-10038/RMAN-03009 combo:</p>
<pre>RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03009: Fehler bei REFAF Befehl in c13 Kanal auf 10/31/2011 08:21:50
RMAN-10038: Datenbank-Session für Kanal c13 unerwartet beendet</pre>
<p>Nothing, not even an RMAN tracing was able to reveal more hints. The trace just told it in other words. No underlying ORA/TNS error or similar.</p>
<p>It finally turned out it were some parameters recently added to sqlnet.ora, I set SQLNET.RECV_TIMEOUT and SQLNET.SEND_TIMEOUT and the beast silently dropped RMAN channels that were idle for a while. The next command in this channel blew up the whole RUN block of the backup script.</p>
<p>I removed the parameters and it works again.</p>
<p>Be careful with your sqlnet.ora <img src='http://www.thebonsai.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2011/11/02/sqlnet-recv_timeoutsend_timeout-and-rman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Escaping special characters in SQL*Plus logon strings</title>
		<link>http://www.thebonsai.net/2011/03/24/escaping-special-characters-in-sqlplus-logon-strings/</link>
		<comments>http://www.thebonsai.net/2011/03/24/escaping-special-characters-in-sqlplus-logon-strings/#comments</comments>
		<pubDate>Thu, 24 Mar 2011 10:12:47 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=261</guid>
		<description><![CDATA[SQL*Plus connect strings/logon strings have a couple of special characters, notably these two: / (slash) to separate username and password @ (at) to separate the TNS descriptor string If you need to use those characters literally in the logon string, you need to tag them with literal double quotes (literal means: the quotes need to [...]]]></description>
			<content:encoded><![CDATA[<p>SQL*Plus connect strings/logon strings have a couple of special characters, notably these two:</p>
<ul>
<li>/ (slash) to separate username and password</li>
<li>@ (at) to separate the TNS descriptor string</li>
</ul>
<p>If you need to use those characters literally in the logon string, you need to tag them with literal double quotes (literal means: the quotes need to be passed to SQL*Plus, I&#8217;m not talking about the UNIX shell):</p>
<ul>
<li>Less readable:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ sqlplus USER<span style="color: #000000; font-weight: bold;">/</span><span style="color: #000000; font-weight: bold;">\&quot;</span>PASS<span style="color: #000000; font-weight: bold;">/</span>WORD<span style="color: #000000; font-weight: bold;">\&quot;</span></pre></div></div>

</li>
<li>More readable:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">$ sqlplus USER<span style="color: #000000; font-weight: bold;">/</span><span style="color: #ff0000;">'&quot;PASS/WORD&quot;'</span></pre></div></div>

</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2011/03/24/escaping-special-characters-in-sqlplus-logon-strings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zero downtime storage migration operations</title>
		<link>http://www.thebonsai.net/2011/01/27/zero-downtime-storage-migration-operations/</link>
		<comments>http://www.thebonsai.net/2011/01/27/zero-downtime-storage-migration-operations/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 06:18:01 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[asm]]></category>
		<category><![CDATA[Disk]]></category>
		<category><![CDATA[fiber channel]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[lun]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[remove]]></category>
		<category><![CDATA[scsi]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=250</guid>
		<description><![CDATA[For some systems a downtime is complicated to organize, or bad at all. We have such a system, a RAC database. In the past, all storage migration operations there had two problems that lead to downtime: CRS votedisk migration at best only with offline CRS kick old devices from the device management in the operating [...]]]></description>
			<content:encoded><![CDATA[<p>For some systems a downtime is complicated to organize, or bad at all. We have such a system, a RAC database.</p>
<p>In the past, all storage migration operations there had two problems that lead to downtime:</p>
<ul>
<li>CRS votedisk migration at best only with offline CRS</li>
<li>kick old devices from the device management in the operating system</li>
</ul>
<p>In December I migrated the system to something more modern</p>
<ul>
<li>SLES11</li>
<li>Oracle Grid Infrastructure (CRS/ASM) 11.2</li>
<li>Oracle Database 10.2.0.5 (yes, still quite old, but it has to be a 10.2 for now)</li>
</ul>
<p>The use of a modern Linux kernel (especially a modern SCSI stack) and 11gR2 infrastructure fixed all my trouble from the past.</p>
<h3>Votedisk</h3>
<p>With 11gR2 Grid Infrastructure, the clusterware manages its vital files (VD, OCR) using an ASM instance. A migration of the ASM diskgroups holding these files is now as easy as a migration of a normal diskgroup. ASM takes care of moving the votedisks and the OCR and collaborates with CRS here.</p>
<h3>Linux devices</h3>
<p>The new Linux kernels with a finally sane SCSI stack and native multipathing helps with the second problem. It&#8217;s not a problem anymore to remove old device references from the stack:</p>
<ul>
<li>deconfigure the devices from multipathd (not needed technically, since multipathd itself holds no device references)</li>
<li>remove the device references from the Linux device mapper

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># see /dev/mapper/* for the name</span>
dmsetup remove mpathX</pre></div></div>

</li>
<li>remove the LUNs from the SCSI stack

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># X:X:X:X LUN number</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #000000;">1</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>sys<span style="color: #000000; font-weight: bold;">/</span>bus<span style="color: #000000; font-weight: bold;">/</span>scsi<span style="color: #000000; font-weight: bold;">/</span>X:X:X:X<span style="color: #000000; font-weight: bold;">/</span>delete</pre></div></div>

</li>
</ul>
<p>After that, you can safely edit the FC zone &#8211; no errors should occur in any logs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2011/01/27/zero-downtime-storage-migration-operations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make all instances in a RAC environment switching the logfile with one single command</title>
		<link>http://www.thebonsai.net/2010/12/02/make-all-instances-in-a-rac-environment-switching-the-logfile-with-one-single-command/</link>
		<comments>http://www.thebonsai.net/2010/12/02/make-all-instances-in-a-rac-environment-switching-the-logfile-with-one-single-command/#comments</comments>
		<pubDate>Thu, 02 Dec 2010 21:49:23 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[logswitch]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[rac]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=226</guid>
		<description><![CDATA[You know the need to sometimes manually switch logfiles with ALTER SYSTEM SWITCH LOGFILE; In a RAC with some more nodes, it can be quite disturbing to do that on all instances. When you inspect the protocol files of the right services, you will find another, undocumented method: ALTER SYSTEM SWITCH ALL LOGFILE; This works [...]]]></description>
			<content:encoded><![CDATA[<p>You know the need to sometimes manually switch logfiles with</p>

<div class="wp_syntax"><div class="code"><pre class="oracle11" style="font-family:monospace;"><span style="color: #993333; font-weight: bold; text-transform: uppercase;">ALTER</span> <span style="color: #993333; font-weight: bold; text-transform: uppercase;">SYSTEM</span> SWITCH LOGFILE;</pre></div></div>

<p>In a RAC with some more nodes, it can be quite disturbing to do that on all instances.</p>
<p>When you inspect the protocol files of the right services, you will find another, <em>undocumented</em> method:</p>

<div class="wp_syntax"><div class="code"><pre class="oracle11" style="font-family:monospace;"><span style="color: #993333; font-weight: bold; text-transform: uppercase;">ALTER</span> <span style="color: #993333; font-weight: bold; text-transform: uppercase;">SYSTEM</span> SWITCH <span style="color: #993333; font-weight: bold; text-transform: uppercase;">ALL</span> LOGFILE;</pre></div></div>

<p>This works at least on 10.2.0.5. Since it&#8217;s undocumented, I can&#8217;t tell you under which circumstances this command works or not, but it looks like always possible. Please find out yourself and let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2010/12/02/make-all-instances-in-a-rac-environment-switching-the-logfile-with-one-single-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slow datapumping on 10.2.0.4</title>
		<link>http://www.thebonsai.net/2010/08/10/slow-datapumping-on-10-2-0-4/</link>
		<comments>http://www.thebonsai.net/2010/08/10/slow-datapumping-on-10-2-0-4/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 04:53:48 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[datapump]]></category>
		<category><![CDATA[dbms_metadata]]></category>
		<category><![CDATA[expdp]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[slow]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=206</guid>
		<description><![CDATA[Recently I hacked a on-demand-export for a user. After his (small) data loading, an export is triggered to have his data in a backupable and tranmsportable file. The total amount of all tables was about 7MB only. The export routines were done with datapump export. I watched a manual run and&#8230; datapump started and connected [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I hacked a on-demand-export for a user. After his (small) data loading, an export is triggered to have his data in a backupable and tranmsportable file. The total amount of all tables was about 7MB only.</p>
<p>The export routines were done with datapump export. I watched a manual run and&#8230;</p>
<ul>
<li>datapump started and connected to a database server process: 3 seconds</li>
<li>datapump estimated and analyzed the data to export: <strong>36 minutes</strong></li>
<li>datapump exported the relevant tables: 4 seconds</li>
</ul>
<p>Do you see what I see? Yes? Right, datapump played with itself. Over 36 minutes of runtime, where 99% of the time not one bit of data was moved. Reproducable 100%. A datapump <em>TRACE=480300</em> generated trace set revealed a huge delay in the worker process when calling <em>DBMS_METADATA.FETCH_XML_CLOB</em> (exactly my 36 minutes).</p>
<p>The solution was a patch for bug</p>
<ul>
<li>7710931: DATAPUMP EXPORT IS EXTREMELY SLOW WHEN EXTRACTING SCHEMA</li>
</ul>
<p>Now datapump does what it&#8217;s designed for: <strong>Pumping data without playing with itself!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2010/08/10/slow-datapumping-on-10-2-0-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fehlerbeseitigung</title>
		<link>http://www.thebonsai.net/2010/05/11/fehlerbeseitigung/</link>
		<comments>http://www.thebonsai.net/2010/05/11/fehlerbeseitigung/#comments</comments>
		<pubDate>Tue, 11 May 2010 19:08:40 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[deutsch]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[idiots]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=198</guid>
		<description><![CDATA[Erlebnis des Tages: Dienstleister bittet die Datenbankadministration um die Beseitigung des folgenden (Zitat) Datenbankfehlers: ORA-00054: resource busy and acquire with NOWAIT specified &#8230;der manchmal bei einem SELECT FOR UPDATE NOWAIT kommt. Ist meine Datenbank kaputt?]]></description>
			<content:encoded><![CDATA[<h3>Erlebnis des Tages:</h3>
<p>Dienstleister bittet die <em>Datenbankadministration</em> um die Beseitigung des folgenden (Zitat) <span style="color: #ff0000;"><em>Datenbankfehlers</em></span>: <strong><em>ORA</em>-<em>00054</em>: resource busy and acquire with NOWAIT specified</strong></p>
<p>&#8230;der manchmal bei einem SELECT FOR UPDATE NOWAIT kommt.</p>
<p>Ist meine Datenbank kaputt?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2010/05/11/fehlerbeseitigung/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Motto des Tages</title>
		<link>http://www.thebonsai.net/2010/04/27/motto-des-tages/</link>
		<comments>http://www.thebonsai.net/2010/04/27/motto-des-tages/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 10:29:21 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[deutsch]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=189</guid>
		<description><![CDATA[Motto des heutigen Tages: Datenbank statt Gartenbank! (vielen Dank an die zynischen Kollegen der Netzwerkadministration&#8230;)]]></description>
			<content:encoded><![CDATA[<p>Motto des heutigen Tages:</p>
<blockquote>
<h2>Datenbank statt Gartenbank!</h2>
</blockquote>
<p>(vielen Dank an die zynischen Kollegen der Netzwerkadministration&#8230;)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2010/04/27/motto-des-tages/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>First touches: Oracle 11g Release 2</title>
		<link>http://www.thebonsai.net/2009/10/22/first-touches-oracle-11g-release-2/</link>
		<comments>http://www.thebonsai.net/2009/10/22/first-touches-oracle-11g-release-2/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 05:36:39 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Work]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=155</guid>
		<description><![CDATA[At the beginning of the week we lost a 10gR2 test server (some mass data application &#8211; sizes similar to warehousing) due to the complete loss of a RAID6 (don&#8217;t ask!). Well, test server is test server: We (me as DBA, and a collegue as the responsible application developer) finally decided to step into the [...]]]></description>
			<content:encoded><![CDATA[<p>At the beginning of the week we lost a 10gR2 test server (some mass data application &#8211; sizes similar to warehousing) due to the complete loss of a RAID6 (don&#8217;t ask!).</p>
<p>Well, test server is test server: We (me as DBA, and a collegue as the responsible application developer) finally decided to step into the Oracle 11 world: The new system will be 11gR2</p>
<p>After some reading in I had no problems to understand the new separated architecture with its HA daemon (keyword: Grid Infrastructure) and install the whole software and create a database. And, very important, there was no, not one damn small, problem when importing 10gR2 datapump files (from the productive system). I heard some weird stories before, and I was a bit afraid about that. But nothing, all data was pumped in like a charm.</p>
<p>The first thing I changed, for me as DBA one of the most interesting features on those large databases, I really parallelized RMAN for backup. I hope I can reduce the backup time to a useful amount with that. This was one of the biggest discrepance in 10g: You can create very large datafiles, but you can&#8217;t backup them in a true parallel manner. I&#8217;ll check my logfiles today and hope&#8230;</p>
<p>Well, so far so good, I will see what 11g (especially R2 here) brings to me and, more important, the applications. It will take some time to really explore the pros.</p>
<p>For all of you still at 10g and loose a test system by accident (and have a developer that really wants it&#8230;): Try it <img src='http://www.thebonsai.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2009/10/22/first-touches-oracle-11g-release-2/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>A UNIX pathname is a UNIX pathname&#8230;or not? ORACLE fooled me again!</title>
		<link>http://www.thebonsai.net/2009/05/05/a-unix-pathname-is-a-unix-pathnameor-not-oracle-fooled-me-again/</link>
		<comments>http://www.thebonsai.net/2009/05/05/a-unix-pathname-is-a-unix-pathnameor-not-oracle-fooled-me-again/#comments</comments>
		<pubDate>Tue, 05 May 2009 17:26:30 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[asm]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[ORACLE_HOME]]></category>
		<category><![CDATA[path]]></category>
		<category><![CDATA[sqlplus]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=130</guid>
		<description><![CDATA[For a new system on SLES10SP2 I wanted to operate 3 separate instances (ASM, 2 databases) from 3 separate ORACLE_HOMEs. The theory isn&#8217;t that complex, so I simply installed and patched up the 3 different ORACLE_HOMEs. After configuring the ASM instance with the creation assistant and enabling the instance in /etc/oratab, I did a reboot. [...]]]></description>
			<content:encoded><![CDATA[<p>For a new system on SLES10SP2 I wanted to operate 3 separate instances (ASM, 2 databases) from 3 separate ORACLE_HOMEs. The theory isn&#8217;t that complex, so I simply installed and patched up the 3 different ORACLE_HOMEs.</p>
<p>After configuring the ASM instance with the creation assistant and enabling the instance in /etc/oratab, I did a reboot. Finally I wrote a small shell function db_change() to change ORACLE_HOME, ORACLE_SID and PATH on the fly to operate on the different instances.</p>
<p>Nothing. I wasn&#8217;t able to connect with sqlplus.<span id="more-130"></span> I verified the instance &#8220;+ASM&#8221; still was running, but I couldn&#8217;t connect. I checked my ORACLE_SID and ORACLE_HOME, but I couldn&#8217;t connect. I even called a friend of mine (thanks Martin!) to make sure I have no conceptual mistake. Nothing. Sqlplus always said &#8220;connected to an idle instance&#8221; &#8211; as if no ASM instance was running at all (or as if I had a typo in the SID).</p>
<p>Since the +ASM instance started fine during system startup, and started fine using the orarun-initscript from SuSE, something had to smell in my setup. After 30 minutes of checking all corners, I decided to compare my current process environment to the process environment of the started ASM PMON (thanks to Linux&#8217; /proc/ filesystem and some shell vodoo, it&#8217;s not a big deal to get a good diff).</p>
<p>After eliminating all the unimportant differences, one was left:</p>
<pre>ORACLE_HOME=/opt/oracle/product/10.2/asm_1</pre>
<pre>ORACLE_HOME=/opt/oracle/product/10.2/asm_1<span style="color: #ff0000;">/
</span></pre>
<p><span style="color: #333333;">See it? Believe it or not, that was it! My shell function set an ORACLE_HOME with a trailing slash, and that drove sqlplus crazy! This may be documented somewhere, I didn&#8217;t look, but it&#8217;s definitely not something intuitive. Finally, that automatically means that things may fail if you put pathes with trailing slash in your /etc/oratab, too.<br />
</span></p>
<h2><span style="color: #333333;">O.R.A.C.L.E!!!<br />
</span></h2>
<p><span style="color: #333333;">Applies to the setup:</span></p>
<ul>
<li><span style="color: #333333;">SLES10SP2</span></li>
<li><span style="color: #333333;">Oracle 10.2.0.4 w/ recommendec patchset 4<br />
</span></li>
</ul>
<p>Have a nice day, and better don&#8217;t trust your common sense! Comments welcome, &#8217;cause I&#8217;m sure this is a well known behaviour and I&#8217;m just too stupid <img src='http://www.thebonsai.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>(and yes, I&#8217;ll rewrite my small shell function to actually parse /etc/oratab!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2009/05/05/a-unix-pathname-is-a-unix-pathnameor-not-oracle-fooled-me-again/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Finally: BIND9 and Oracle RDBMS are compatible!</title>
		<link>http://www.thebonsai.net/2009/04/24/finally-bind9-and-oracle-rdbms-are-compatible/</link>
		<comments>http://www.thebonsai.net/2009/04/24/finally-bind9-and-oracle-rdbms-are-compatible/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 05:04:45 +0000</pubDate>
		<dc:creator>TheBonsai</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[BIND]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.thebonsai.net/?p=125</guid>
		<description><![CDATA[This morning I had a really good start. Get the first cup of coffee, activate the NX session, open the IRC client, go to Freenode&#8217;s #oracle channel, and saw a question: super noob question , how do i query my oracle database online, do i need to setup bind9 and allow incoming connections so it [...]]]></description>
			<content:encoded><![CDATA[<p>This morning I had a really good start. Get the first cup of coffee, activate the NX session, open the IRC client, go to Freenode&#8217;s #oracle channel, and saw a question:</p>
<blockquote><p>super noob question , how do i query my oracle database online, do i need to setup bind9 and allow incoming connections so it can be accessed</p></blockquote>
<p>I just wanted to share that <img src='http://www.thebonsai.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Have a good day!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thebonsai.net/2009/04/24/finally-bind9-and-oracle-rdbms-are-compatible/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

