<?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>non-random ramble &#187; oracle</title>
	<atom:link href="http://jimbarritt.com/non-random/category/code/oracle/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimbarritt.com/non-random</link>
	<description>adventures in code</description>
	<lastBuildDate>Tue, 20 Sep 2011 13:16:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Install Oracle XE 10g On OS X with VMWare Fusion</title>
		<link>http://jimbarritt.com/non-random/2010/04/21/install-oracle-xe-10g-on-os-x-with-vmware-fusion/</link>
		<comments>http://jimbarritt.com/non-random/2010/04/21/install-oracle-xe-10g-on-os-x-with-vmware-fusion/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 13:40:09 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[databases]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://jimbarritt.com/non-random/?p=392</guid>
		<description><![CDATA[Oracle don&#8217;t yet provide a native OS X installer for XE but you can install it on a virtual machine running under OS X. I found a very detailed article here [1] but also found it quite hard to follow, so thought I would post my own experience here, referring back to that one where [...]]]></description>
			<content:encoded><![CDATA[<p><img alt="Oracle HQ" src="http://www.tonie.net/images/sanjose2001/siliconvalley/oracle1.jpg" title="Oracle HQ" class="aligncenter" width="400"  /></p>
<p>Oracle don&#8217;t yet provide a native OS X installer for XE but you can install it on a virtual machine running under OS X.</p>
<p>I found a very detailed article here <a href="#REF-1">[1]</a> but also found it quite hard to follow, so thought I would post my own experience here, referring back to that one where appropriate.</p>
<p>First you need <a href="http://www.vmware.com/products/fusion/">VMWare Fusion</a></p>
<p>I have installed Windows XP SP 2 on there.</p>
<p>The installation of Fusion and XP was pretty straightforward, just point and click. Once the windows guest machine is set up, fusion should prompt you to install VMWare tools which makes the graphics look much better. It will also ask you to install McAffee anti virus (its a free 12 month trial) which I did. </p>
<p>According to <a href="#REF-1">[1]</a>, it is important to set the computer name. In my case I set this to be &#8220;winxp-guest&#8221; (right click My Computer).</p>
<p>Next thing is to get the networking set up correctly. You have 3 options with VMWare Fusion:</p>
<ul>
<li>NAT &#8211; share the network adapter with the host machine</li>
<li>BRIDGED &#8211; VM appears to be a seperate machine to the host</li>
<li>PRIVATE &#8211; VM is only available within the host machine and not on the wider network</li>
</ul>
<p>PRIVATE networking means your VM cannot connect to the internet, so the best option is <b>NAT</b></p>
<p>When you change your network settings you need to renew your network config:</p>
<pre name='code' class='java:nogutter:nocontrols'>
ipconfig /release
ipconfig /renew
</pre>
<p>You should see your IP address like this:</p>
<pre name='code' class='java:nogutter:nocontrols'>
C:\Documents and Settings\Administrator>ipconfig /renew
Windows IP Configuration
Ethernet adapter Local Area Connection:
       Connection-specific DNS Suffix  . : localdomain
       IP Address. . . . . . . . . . . . : 192.168.xx.xxx
       Subnet Mask . . . . . . . . . . . : 255.255.255.0
       Default Gateway . . . . . . . . . : 192.168.xx.xx
</pre>
<p>In order to be able to connect to your guest machine from outside, you need to configure firewalls&#8230;</p>
<p>Initially, I disabled McAffee. Once I got everything working, I re-enabled Mcaffee and found that when I tried to access using SqlDeveloper it automatically asked me if I wanted to allow this program.</p>
<p>To setup the windows firewall, you need to go to Control Panel -> Windows Firewall -> Exceptions -> Add Port&#8230;<br />
You&#8217;ll need to do this twice, one for http access to the admin tool (8080) and one for client access (1521 which is the default) </p>
<p>You also need to select Advanced -> ICMP -> Allow incoming echo request if you want to be able to ping it.</p>
<p>From the host:<br />
<pre name='code' class='java:nogutter:nocontrols'>
ping 192.168.xx.xxx
64 bytes from 192.168.xx.xxx: icmp_seq=0 ttl=128 time=0.290 ms
64 bytes from 192.168.xx.xxx: icmp_seq=1 ttl=128 time=0.498 ms
</pre></p>
<p>You should also setup your hosts file on the host computer:</p>
<pre name='code' class='java:nogutter:nocontrols'>
sudo vi /etc/hosts
##
# Host Database
#
# localhost is used to configure the loopback interface
# when the system is booting.  Do not change this entry.
##
127.0.0.1       localhost
255.255.255.255 broadcasthost
::1             localhost
fe80::1%lo0     localhost
192.168.xx.xxx winxp-guest winxp-guest.localdomain
</pre>
<p>The localdomain part I found out from installing apache. Note, I also ran &#8220;Network ID&#8221; wizard from the My Computer-> Computer Name screen, not sure if that made a difference.</p>
<p>Now you can <code>ping winxp-guest</code></p>
<p>To check that everything is in order, I installed <a href="http://www.apache.org/dist/httpd/binaries/win32/">apache</a> on the guest </p>
<p>I picked <code>httpd-2.2.15-win32-x86-no_ssl.msi</code> and within a few moments I can navigate to <code>http://winxp-guest</code>on the guest machine and see an apache &#8220;It Works!&#8221; page.</p>
<p>I can also do this from my host machine, so networking is all good.</p>
<p>In the reference it mentions setting up the windows hosts file aswell on the guest machine, this is so that everything works on the guest machine with the tnsnames.ora file (it get generated to point to whatever the hostname of your machine is). It is not important to connect from the host machine.</p>
<pre name='code' class='java:nogutter:nocontrols'>
# For example:
#
#      102.54.94.97     rhino.acme.com          # source server
#       38.25.63.10     x.acme.com              # x client host
127.0.0.1       localhost
192.168.xx.xxx winxp-guest winxp-guest.localdomain
</pre>
<p>Next install Oracle XE itself. The only thing required to enter here is a password, which you will later use to log in to the web interface with the user &#8220;SYSTEM&#8221;</p>
<p>Once installed, you can launch the home page and log in as SYSTEM. The first thing to do is to change &#8220;Administration->Http Access&#8221; which will allow computers outside the machine to access the admin console.</p>
<p>Then you can try it out using sqlplus. I found there was a mistake in the Environment PATH variable &#8211; it had referred to the bin directory as &#8220;bin&#8221; but in windows it was actually &#8220;BIN&#8221;. Changing it made it work for me.</p>
<pre name='code' class='java:nogutter:nocontrols'>
sqlplus SYSTEM/{password}@XE
SQL> create table foo (bar number, baz varchar(255));
SQL> insert into foo VALUES (2, &#8216;blah&#8217;);
SQL> select * from foo;
       BAR
&#8212;&#8212;&#8212;-
BAZ
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;
         2
blah
SQL> drop table foo;
</pre>
<p>Brilliant. You have an oracle database.</p>
<p>The connection XE is from your tnsnames.ora file which lives (in default install) at <code>C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN</code></p>
<p>and contains:</p>
<pre name='code' class='java:nogutter:nocontrols'>
XE =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = winxp-guest)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = XE)
    )
  )
</pre>
<p>Notice the hostname in here. Presumably if you wanted to change this you could update this file and the computer name and your hosts file.</p>
<p>Next step is to try accessing from the host machine.</p>
<p>I used Oracle <a href="http://www.oracle.com/technology/software/products/sql/index.html">SQLDeveloper</a></p>
<p>I used a jdbc connection string of jdbc:oracle:thin:@winxp-guest:1521:xe</p>
<p>Note that as long as you update /etc/hosts on the host machine, you can call the computer whatever you like (e.g. oraclexe)</p>
<p>Something you might need to do is create a new tablespace. You can do this through the oracle administration console. Go to &#8220;home&#8221; and then SQL and you can execute sql like this:<br />
<pre name='code' class='java:nogutter:nocontrols'>
create tablespace
 datafile &#8216;/ORACLEXE/ORADATA/XE/{table_space_name}/{table_space_name}.dbf&#8217; size 500m;
</pre></p>
<p>References:</p>
<p><a name="REF-1">[1] http://blog.mclaughlinsoftware.com/how-to-configure-mac-os-x-as-an-oracle-client/</a></table_space_name>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2010%2F04%2F21%2Finstall-oracle-xe-10g-on-os-x-with-vmware-fusion%2F&amp;title=Install%20Oracle%20XE%2010g%20On%20OS%20X%20with%20VMWare%20Fusion" id="wpa2a_2"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2010/04/21/install-oracle-xe-10g-on-os-x-with-vmware-fusion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Limit number of rows in an oracle query</title>
		<link>http://jimbarritt.com/non-random/2006/03/29/limit-number-of-rows-in-an-oracle-query/</link>
		<comments>http://jimbarritt.com/non-random/2006/03/29/limit-number-of-rows-in-an-oracle-query/#comments</comments>
		<pubDate>Wed, 29 Mar 2006 02:13:58 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[databases]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/03/29/limit-number-of-rows-in-an-oracle-query/</guid>
		<description><![CDATA[select * from ( select * from (select * from CODETABLE_READCODE) order by DESCRIPTION ) where rownum]]></description>
			<content:encoded><![CDATA[<p>select *<br />
from (<br />
select *<br />
from (select * from CODETABLE_READCODE)<br />
order by DESCRIPTION<br />
)<br />
where rownum <= 6</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F03%2F29%2Flimit-number-of-rows-in-an-oracle-query%2F&amp;title=Limit%20number%20of%20rows%20in%20an%20oracle%20query" id="wpa2a_4"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/03/29/limit-number-of-rows-in-an-oracle-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Websphere Wierdness</title>
		<link>http://jimbarritt.com/non-random/2006/03/14/websphere-wierdness/</link>
		<comments>http://jimbarritt.com/non-random/2006/03/14/websphere-wierdness/#comments</comments>
		<pubDate>Tue, 14 Mar 2006 02:26:53 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[databases]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[websphere]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/03/14/websphere-wierdness/</guid>
		<description><![CDATA[I discovered a joyful thing with the websphere JDBC connection: You want to make a prepared statement that uses the &#8220;like&#8221; operator. You write : select * from SOMETABLE where SOMECOLUMN like ? and it throws an IndexOutOfBoundsException !! YOU HAVE TO GET THE CASE CORRECT! so : select * from SOMETABLE where SOMECOLUMN LIKE [...]]]></description>
			<content:encoded><![CDATA[<p>I discovered a joyful thing with the websphere JDBC connection:</p>
<p>You want to make a prepared statement that uses the &#8220;like&#8221; operator.</p>
<p>You write :</p>
<p>select * from SOMETABLE where SOMECOLUMN like ?</p>
<p>and it throws an IndexOutOfBoundsException !!</p>
<p>YOU HAVE TO GET THE CASE CORRECT! so :</p>
<p>select * from SOMETABLE where SOMECOLUMN LIKE ?</p>
<p>or</p>
<p>select * from SOMETABLE where SOMECOLUMN Like ?</p>
<p>Weird eh ?</p>
<p>also if you want to select by a date you have to do :</p>
<p>select * from SOMETABLE where SOMEDATECOLUMN = to_date(?, &#8216;dd-mm-yyyy&#8217;)</p>
<p>putting in whatever format you have.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F03%2F14%2Fwebsphere-wierdness%2F&amp;title=Websphere%20Wierdness" id="wpa2a_6"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/03/14/websphere-wierdness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scary Oracle Guy</title>
		<link>http://jimbarritt.com/non-random/2006/02/01/scary-oracle-guy/</link>
		<comments>http://jimbarritt.com/non-random/2006/02/01/scary-oracle-guy/#comments</comments>
		<pubDate>Tue, 31 Jan 2006 22:54:41 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/02/01/scary-oracle-guy/</guid>
		<description><![CDATA[http://www.dba-oracle.com/t_alter_table_rename.htm create table faq_tbl( id number, doc xmltype, hits number) XMLTYPE COLUMN doc XMLSCHEMA "http://www.oracle.com/faq.xsd" ELEMENT "FAQ"]]></description>
			<content:encoded><![CDATA[<p><a class="moz-txt-link-freetext" href="http://www.dba-oracle.com/t_alter_table_rename.htm">http://www.dba-oracle.com/t_alter_table_rename.htm</a></p>
<pre>create table faq_tbl(
id number,
doc xmltype,
hits number)
XMLTYPE COLUMN doc
XMLSCHEMA "http://www.oracle.com/faq.xsd"
ELEMENT "FAQ"</pre>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F02%2F01%2Fscary-oracle-guy%2F&amp;title=Scary%20Oracle%20Guy" id="wpa2a_8"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/02/01/scary-oracle-guy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Renaming oracle</title>
		<link>http://jimbarritt.com/non-random/2006/02/01/renaming-oracle/</link>
		<comments>http://jimbarritt.com/non-random/2006/02/01/renaming-oracle/#comments</comments>
		<pubDate>Tue, 31 Jan 2006 21:04:22 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/02/01/renaming-oracle/</guid>
		<description><![CDATA[alter table SONGS rename to SONGS_HUGE; AAAARRRHGG!!]]></description>
			<content:encoded><![CDATA[<p>alter table<br />
SONGS<br />
rename to<br />
SONGS_HUGE;</p>
<p>AAAARRRHGG!! <img src="http://www.dba-oracle.com/images/auth_pic_don_burleson_120_140.jpg" /></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F02%2F01%2Frenaming-oracle%2F&amp;title=Renaming%20oracle" id="wpa2a_10"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/02/01/renaming-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle functions</title>
		<link>http://jimbarritt.com/non-random/2006/01/31/oracle-functions/</link>
		<comments>http://jimbarritt.com/non-random/2006/01/31/oracle-functions/#comments</comments>
		<pubDate>Tue, 31 Jan 2006 01:50:07 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/01/31/oracle-functions/</guid>
		<description><![CDATA[to_date to_number decode all do what i needed. damn!]]></description>
			<content:encoded><![CDATA[<p>to_date</p>
<p>to_number</p>
<p>decode</p>
<p>all do what i needed. damn!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F01%2F31%2Foracle-functions%2F&amp;title=Oracle%20functions" id="wpa2a_12"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/01/31/oracle-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More Oracle</title>
		<link>http://jimbarritt.com/non-random/2006/01/31/more-oracle/</link>
		<comments>http://jimbarritt.com/non-random/2006/01/31/more-oracle/#comments</comments>
		<pubDate>Mon, 30 Jan 2006 20:30:25 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/01/31/more-oracle/</guid>
		<description><![CDATA[http://www.oracle-base.com/articles/9i/XMLDB9i.php#RegisterXMLSchema]]></description>
			<content:encoded><![CDATA[<p>http://www.oracle-base.com/articles/9i/XMLDB9i.php#RegisterXMLSchema</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F01%2F31%2Fmore-oracle%2F&amp;title=More%20Oracle" id="wpa2a_14"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/01/31/more-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Schemas in Oracle</title>
		<link>http://jimbarritt.com/non-random/2006/01/25/schemas-in-oracle/</link>
		<comments>http://jimbarritt.com/non-random/2006/01/25/schemas-in-oracle/#comments</comments>
		<pubDate>Wed, 25 Jan 2006 02:45:45 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/01/25/schemas-in-oracle/</guid>
		<description><![CDATA[http://www.cs.umb.edu/cs634/ora9idocs/appdev.920/a96620/xdb05obj.htm#1032574 Ok to get XML to work proper with oracle you have to install Oracle XDB : http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb02rep.htm#i1034529 http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb01int.htm#sthref167 some mo and then some]]></description>
			<content:encoded><![CDATA[<p>http://www.cs.umb.edu/cs634/ora9idocs/appdev.920/a96620/xdb05obj.htm#1032574</p>
<p>Ok to get XML to work proper with oracle you have to install Oracle XDB :</p>
<p>http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb02rep.htm#i1034529</p>
<p>http://download-west.oracle.com/docs/cd/B19306_01/appdev.102/b14259/xdb01int.htm#sthref167</p>
<p>some mo<br />
and then some</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F01%2F25%2Fschemas-in-oracle%2F&amp;title=Schemas%20in%20Oracle" id="wpa2a_16"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/01/25/schemas-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Oracle Doc</title>
		<link>http://jimbarritt.com/non-random/2006/01/25/cool-oracle-doc/</link>
		<comments>http://jimbarritt.com/non-random/2006/01/25/cool-oracle-doc/#comments</comments>
		<pubDate>Tue, 24 Jan 2006 21:08:17 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[databases]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/01/25/cool-oracle-doc/</guid>
		<description><![CDATA[http://www.oracle.com/technology/tech/xml/xmldb/Current/TWP_Mastering_XMLDB_Queries.pdf]]></description>
			<content:encoded><![CDATA[<p>http://www.oracle.com/technology/tech/xml/xmldb/Current/TWP_Mastering_XMLDB_Queries.pdf</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F01%2F25%2Fcool-oracle-doc%2F&amp;title=Cool%20Oracle%20Doc" id="wpa2a_18"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/01/25/cool-oracle-doc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle forum</title>
		<link>http://jimbarritt.com/non-random/2006/01/25/oracle-forum/</link>
		<comments>http://jimbarritt.com/non-random/2006/01/25/oracle-forum/#comments</comments>
		<pubDate>Tue, 24 Jan 2006 20:40:14 +0000</pubDate>
		<dc:creator>Jim Barritt</dc:creator>
				<category><![CDATA[databases]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.planet-ix.com/non-random/2006/01/25/oracle-forum/</guid>
		<description><![CDATA[http://forums.oracle.com/forums/forum.jspa?forumID=34]]></description>
			<content:encoded><![CDATA[<p>http://forums.oracle.com/forums/forum.jspa?forumID=34</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fjimbarritt.com%2Fnon-random%2F2006%2F01%2F25%2Foracle-forum%2F&amp;title=Oracle%20forum" id="wpa2a_20"><img src="http://jimbarritt.com/non-random/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://jimbarritt.com/non-random/2006/01/25/oracle-forum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

