<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.1" -->
<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/"
	>

<channel>
	<title>encounter with the geek kind</title>
	<link>http://blogs.exist.com/jcutaran</link>
	<description>just another tech doc</description>
	<pubDate>Wed, 17 Sep 2008 08:49:23 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<item>
		<title>maven and ear packaging</title>
		<link>http://blogs.exist.com/jcutaran/2008/09/17/maven-and-ear-packaging/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/09/17/maven-and-ear-packaging/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 08:49:23 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[ear packaging issue]]></category>

		<category><![CDATA[maven ear]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/09/17/maven-and-ear-packaging/</guid>
		<description><![CDATA[okay, i just needed to place some files in the ear file.
solution:
-create src/main/application
-anything you place in that folder will be included in the ear file
-DO NOT USE &#8217;src/main/resources&#8217;, it will not get into your ear file
-thanks to cata
]]></description>
			<content:encoded><![CDATA[<p>okay, i just needed to place some files in the ear file.</p>
<p>solution:<br />
-create src/main/application<br />
-anything you place in that folder will be included in the ear file<br />
-<strong>DO NOT USE</strong> &#8217;src/main/resources&#8217;, it will not get into your ear file</p>
<p>-thanks to cata</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/09/17/maven-and-ear-packaging/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Java, the IP address and reverse proxy</title>
		<link>http://blogs.exist.com/jcutaran/2008/09/15/java-the-ip-address-and-reverse-proxy/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/09/15/java-the-ip-address-and-reverse-proxy/#comments</comments>
		<pubDate>Mon, 15 Sep 2008 07:17:43 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[IP address]]></category>

		<category><![CDATA[reverse proxy]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/09/15/java-the-ip-address-and-reverse-proxy/</guid>
		<description><![CDATA[Okay so there is the getRemoteAddr() method of HttpServletRequest, but when you&#8217;re using a reverse proxy that won&#8217;t work and it will just return 127.0.0.1
If so, look for the header &#8216;X-Forwarded-For&#8216; of your request object. (request.getHeader("X-Forwarded-For")).
But this will return null if using  non-reverse proxy. 

thanks to POLONKAI Gergely
]]></description>
			<content:encoded><![CDATA[<p>Okay so there is the <code>getRemoteAddr()</code> method of HttpServletRequest, but when you&#8217;re using a reverse proxy that won&#8217;t work and it will just return 127.0.0.1</p>
<p>If so, look for the header &#8216;<strong>X-Forwarded-For</strong>&#8216; of your request object. (<code>request.getHeader("X-Forwarded-For")</code>).<br />
But this will return null if using  non-reverse proxy. <img src='http://blogs.exist.com/jcutaran/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<a style="font-size:6pt" href="http://httpd.markmail.org/search/?q=reverse+proxy+preserve+ip#query:reverse%20proxy%20preserve%20ip+page:1+mid:3d5lba66mveyuc5w+state:results"><br />
thanks to POLONKAI Gergely</a><br /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/09/15/java-the-ip-address-and-reverse-proxy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Linux: finding files given text within&#8230;</title>
		<link>http://blogs.exist.com/jcutaran/2008/08/13/linux-finding-files-given-text-within/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/08/13/linux-finding-files-given-text-within/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 11:02:47 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/08/13/linux-finding-files-given-text-within/</guid>
		<description><![CDATA[after setting up the data source for my jbossportal,
i kinda need to play around with its layout and theme.
so i read the documentation,
but it was lacking on the files and its directories where those configurations can be found.
thanks to Nap:), he gave me a way of finding those with 
find . -name &#8216;*.xml&#8217; &#124; xargs [...]]]></description>
			<content:encoded><![CDATA[<p>after setting up the data source for my jbossportal,<br />
i kinda need to play around with its layout and theme.<br />
so i read the documentation,<br />
but it was lacking on the files and its directories where those configurations can be found.</p>
<p>thanks to Nap:), he gave me a way of finding those with </p>
<p>find . -name &#8216;*.xml&#8217; | xargs grep &#8220;phalanx&#8221;</p>
<p>first part, <code>find . -name '*.xml'  </code> does find all xml files<br />
second part, <code>xargs</code> which tells to operate on each of those files<br />
finally , <code>grep "phalanx"</code> which text contained within the files i&#8217;m looking for.</p>
<p>after it returned the files i needed,<br />
did the configuration and played with the layout of jbossportal.</p>
<p>oh, by the way, the output is kinda like this&#8230;</p>
<p>./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-layouts.xml:      phalanx<br />
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-layouts.xml:      /phalanx/index.jsp<br />
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-layouts.xml:      /phalanx/index.jsp<br />
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-layouts.xml:      /layouts/phalanx/maximized.jsp<br />
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-layouts.xml:      /layouts/phalanx/maximized.jsp<br />
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-themes.xml:      nphalanx<br />
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-themes.xml:<br />
./server/default/deploy/jboss-portal.sar/portal-core.war/WEB-INF/portal-themes.xml:<br />
./server/default/deploy/jboss-portal.sar/conf/data/default-object.xml:               phalanx<br />
./server/default/deploy/jboss-portal.sar/conf/data/default-object.xml:               phalanx<br />
./server/default/deploy/jboss-portal.sar/META-INF/jboss-service.xml:      phalanx</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/08/13/linux-finding-files-given-text-within/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Oracle: Could not create another database? Create another data source.</title>
		<link>http://blogs.exist.com/jcutaran/2008/08/13/oracle-could-not-create-another-database/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/08/13/oracle-could-not-create-another-database/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 08:41:19 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/08/13/oracle-could-not-create-another-database/</guid>
		<description><![CDATA[I needed to set-up another data source using the same database server
&#8212;&#8211;
So using the SQL Plus, i created a user and granted privileges for it.
Creating User
  SQL&#62; create user username identified by password default tablespace user_tablespace temporary tablespace temp_tablespace;
e.g.
  SQL&#62; create user wpsdbusr identified by password default tablespace users temporary tablespace temp;

Granting Privileges
 [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to set-up another data source using the same database server</p>
<p>&#8212;&#8211;</p>
<p>So using the SQL Plus, i created a user and granted privileges for it.</p>
<p>Creating User<br />
<code>  SQL&gt; create user username identified by password default tablespace user_tablespace temporary tablespace temp_tablespace;<br />
</code>e.g.<br />
<code>  SQL&gt; create user wpsdbusr identified by password default tablespace users temporary tablespace temp;<br />
</code></p>
<p>Granting Privileges<br />
<code>  SQL&gt; grant connect, resource to username;<br />
</code>e.g.<br />
<code>  SQL&gt; grant connect, resource to wpsdbusr;<br />
</code><br />
now i have another data source for my project using the same database.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/08/13/oracle-could-not-create-another-database/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Transposing Records into One Field</title>
		<link>http://blogs.exist.com/jcutaran/2008/07/15/transposing-records-into-one-field/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/07/15/transposing-records-into-one-field/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 06:27:54 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Java]]></category>

		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/07/15/transposing-records-into-one-field/</guid>
		<description><![CDATA[As they say in Exist, There&#8217;s always a better way.
What I Did&#8230;
performed a loop for each record in my collection to retrieve another collection using a particular Id in the record
and placing the retrieved collection to be part of the record. 
The Effect&#8230; 
my screen populates very slow
The Solution&#8230;
from backend, transpose those collection being retrieved [...]]]></description>
			<content:encoded><![CDATA[<p>As they say in Exist, There&#8217;s always a better way.</p>
<p><strong>What I Did&#8230;<br />
</strong>performed a loop for each record in my collection to retrieve another collection using a particular Id in the record<br />
and placing the retrieved collection to be part of the record. </p>
<p><strong>The Effect&#8230; </strong><br />
my screen populates very slow</p>
<p><a href="http://docs.google.com/View?docid=dmd44wb_80ftbqtkf8">The Solution&#8230;</a><br />
from backend, transpose those collection being retrieved to be just one field so you need not to loop in your code</p>
<p><a href="http://docs.google.com/View?docid=dmd44wb_80ftbqtkf8"><font color="red">Click Here&#8230;</font></a></p>
<p>- thanks to ken and cata</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/07/15/transposing-records-into-one-field/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Eclipse: build-error but seems everything is set properly</title>
		<link>http://blogs.exist.com/jcutaran/2008/07/04/eclipse-build-error-but-seems-everything-is-set-properly/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/07/04/eclipse-build-error-but-seems-everything-is-set-properly/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 08:45:48 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Eclipse]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/07/04/eclipse-build-error-but-seems-everything-is-set-properly/</guid>
		<description><![CDATA[Been using Eclipse for two years now.
So I have this project with a modular setup where all model class is in one folder while the webapp is in another folder. 
Okay, so i did check everything. It seems everything is set properly. 
My project do get build in maven, all build path and variables are [...]]]></description>
			<content:encoded><![CDATA[<p>Been using Eclipse for two years now.</p>
<p>So I have this project with a modular setup where all model class is in one folder while the webapp is in another folder. </p>
<p>Okay, so i did check everything. It seems everything is set properly. </p>
<p>My project do get build in maven, all build path and variables are set properly.</p>
<p>So how did I solve my error? ALL I needed to do was to <strong>PROJECT &gt;&gt; CLEAN</strong>.</p>
<p>&#8211;thanks VENZ <img src='http://blogs.exist.com/jcutaran/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/07/04/eclipse-build-error-but-seems-everything-is-set-properly/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Debugging in Eclipse, calling shell scripts</title>
		<link>http://blogs.exist.com/jcutaran/2008/05/06/debugging-in-eclipse-calling-shell-scripts/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/05/06/debugging-in-eclipse-calling-shell-scripts/#comments</comments>
		<pubDate>Wed, 07 May 2008 03:11:50 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Eclipse]]></category>

		<category><![CDATA[Java]]></category>

		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[sqlldr]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/05/06/debugging-in-eclipse-calling-shell-scripts/</guid>
		<description><![CDATA[Background:
i&#8217;m using Ubuntu, my Eclipse was installed via apt-get
i have Oracle installed under &#8216;oracle&#8217; profile
i run and debug my program through Eclipse
Issue:
attempt to run sqlldr which is called from the webapp results to an error/sqlldr exit code 3.
Solution:
run the webapp externally, don&#8217;t use Eclipse when running the webapp(since it was installed via apt-get and uses [...]]]></description>
			<content:encoded><![CDATA[<p>Background:<br />
i&#8217;m using Ubuntu, my Eclipse was installed via apt-get<br />
i have Oracle installed under &#8216;oracle&#8217; profile<br />
i run and debug my program through Eclipse</p>
<p>Issue:<br />
attempt to run sqlldr which is called from the webapp results to an error/sqlldr exit code 3.</p>
<p>Solution:<br />
run the webapp externally, don&#8217;t use Eclipse when running the webapp(since it was installed via apt-get and uses different permissions/ownership)<br />
or have a manual installation of Eclipse and place it in your profile&#8217;s home folder if you want to use Eclipse for running your webapp.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/05/06/debugging-in-eclipse-calling-shell-scripts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Installing Oracle 10g in Ubuntu 7.10 (Gutsy Gibbon)</title>
		<link>http://blogs.exist.com/jcutaran/2008/05/05/installing-oracle-10g-in-ubuntu-710-gutsy-gibbon/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/05/05/installing-oracle-10g-in-ubuntu-710-gutsy-gibbon/#comments</comments>
		<pubDate>Tue, 06 May 2008 02:55:54 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Oracle]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Oracle Installation]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/05/05/installing-oracle-10g-in-ubuntu-710-gutsy-gibbon/</guid>
		<description><![CDATA[This doc isn&#8217;t yet perfect, but it would help.
1. Requirements
    Your linux swap is set to 2GB
    You have the Oracle 10g RC2 installer for Linux
2. Setting Ubuntu
 2.1 Install required libraries
Open the Synaptic Package Manager (click System &#8211;&#62; Administration)
Click on Settings &#8211;&#62; Repositories
Click all the checkbox(main, universe, restricted, [...]]]></description>
			<content:encoded><![CDATA[<p>This doc isn&#8217;t yet perfect, but it would help.</p>
<p>1. Requirements<br />
    Your linux swap is set to 2GB<br />
    You have the Oracle 10g RC2 installer for Linux</p>
<p>2. Setting Ubuntu</p>
<p> 2.1 Install required libraries</p>
<p>Open the Synaptic Package Manager (click System &#8211;&gt; Administration)<br />
Click on Settings &#8211;&gt; Repositories<br />
Click all the checkbox(main, universe, restricted, multiverse) found in the &#8220;Ubuntu Software&#8221; Tab<br />
Click the Close button<br />
Click the Reload button<br />
Close the Synaptic Package Manager</p>
<p>Open a terminal<br />
sudo apt-get install gcc make binutils libmotif3 lesstif2 rpm libaio1 zip build-essential rpm lesstif2-dev alien -y</p>
<p> 2.2 Users/groups Oracle&#8217;s creation</p>
<p>sudo userdel nobody<br />
sudo groupadd oinstall<br />
sudo groupadd dba<br />
sudo groupadd nobody<br />
sudo useradd -g oinstall -G dba -p passwd -d /home/oracle -m oracle -s /bin/bash<br />
sudo useradd -g nobody nobody<br />
sudo passwd oracle</p>
<p> 2.3 Deceive Installer that you are using RedHat</p>
<p>sudo ln -s /usr/bin/awk /bin/awk<br />
sudo ln -s /usr/bin/rpm /bin/rpm<br />
sudo ln -s /usr/bin/basename /bin/basename<br />
sudo ln -s /etc /etc/rc.d<br />
sudo touch /etc/redhat-release<br />
sudo chmod 666 /etc/redhat-release<br />
sudo echo &#8220;Red Hat Linux release 3.0 (drupal)&#8221; &gt; /etc/redhat-release</p>
<p>sudo mkdir -p /u01/app/oracle<br />
sudo mkdir -p /u02/oradata</p>
<p>sudo mkdir /data/oracle -p<br />
sudo mkdir /data/oracle/10g</p>
<p>  2.3.1 mode &amp; ownership modification</p>
<p>sudo chown -R oracle:oinstall /u01 /u02<br />
sudo chmod -R 775 /u01 /u02</p>
<p>sudo chown -R oracle:oinstall /data/oracle<br />
sudo chmod -R 775 /data/oracle</p>
<p> 2.4 Configurations</p>
<p>  2.4.1 Configuring Kernel Parameters</p>
<p>Oracle instances consume memory and CPU resources on servers, and Ubuntu doesn’t come configured to allow the quantity of resources to be consumed that we’ll end up needing. To fix that, we therefore have to specify a set of new Kernerl Parameters which the operating system should use. That’s easily done by editing one file, like so:</p>
<p>sudo gedit /etc/sysctl.conf</p>
<p>You can substitute in the name of your preferred text editor instead of gedit if you like, but whatever editor you use, you now need to add these lines to the end of that file:</p>
<p>kernel.shmall = 2097152<br />
kernel.shmmax = 2147483648<br />
kernel.shmmni = 4096<br />
kernel.sem = 250 32000 100 128<br />
fs.file-max = 65536<br />
net.ipv4.ip_local_port_range = 1024 65000</p>
<p>Don’t make any typing mistakes (it’s best to cut-and-paste from the above, really) and make sure you leave a blank line after the last line of the file (otherwise, the last setting tends not to get read and implemented at all). Normally, the sysctl.conf file is only read at each machine startup, so you’d have to reboot the server to implement the changes, but you can force the server to re-read the file without need for a reboot by now issuing the command:</p>
<p>sudo /sbin/sysctl -p</p>
<p> 2.4.2 Security Limits</p>
<p>Finally, we need to set some new security limits for the system, too. Do that by issuing this command:</p>
<p>sudo gedit /etc/security/limits.conf</p>
<p>..and then appending to the end of that file these new values:</p>
<p>* soft nproc 2047<br />
* hard nproc 16384<br />
* soft nofile 1024<br />
* hard nofile 65536</p>
<p> 2.4.3 Setting Up Environment</p>
<p>sudo mkdir /home/oracle<br />
sudo chown oracle:oinstall /home/oracle -R<br />
sudo gedit /home/oracle/.bashrc</p>
<p>    ORACLE_HOME=/data/oracle/10g/<br />
    ORACLE_SID=orcl<br />
    ORATAB=/etc/oratab<br />
    ORACLE_HOME_LISTNER=$ORACLE_BASE<br />
    ORACLE_BASE=$ORACLE_HOME</p>
<p>    export ORACLE_BASE ORACLE_SID ORATAB ORACLE_HOME ORACLE_HOME_LISTNER</p>
<p>    PATH=${PATH}:$ORACLE_HOME/bin</p>
<p>Make sure to leave a blank line after the last of those lines.</p>
<p>3. Installing Oracle</p>
<p> 3.1 preparing  the installer</p>
<p>    copy the oracle installer to /home/oracle<br />
    sudo chown oracle:oinstall /home/oracle/*.zip<br />
    sudo chmod 775 /home/oracle/*.zip</p>
<p> 3.2 running the installer<br />
    logout of ubuntu<br />
    login back as oracle</p>
<p>    open a console<br />
    unzip the file<br />
    cd /home/oracle/database</p>
<p>    ./runInstaller -ignoreprereq</p>
<p> 3.3 Editing Oratab</p>
<p>You should log out as the oracle user, and log yourself back on as yourself (that is, the user you created during the Ubuntu install). That’s a full logout and logon, not merely the use of the su command to become another account, by the way.</p>
<p>Once you’ve done that, you should edit the contents of the /etc/oratab file in the text editor of your choice. You’ll have to have root privileges to edit a file in the /etc directory, of course, and that means it will be necessary to issue a command such as:</p>
<p>sudo gedit /etc/oratab</p>
<p>You’ll find at the moment that the file contains this one line (apart from all the commented-out ones, that is):</p>
<p>orcl:/oracle/10g:N</p>
<p>4. Starting the listener and the database</p>
<p>su - oracle<br />
Password: enter your sudo password<br />
[oracle] $ lsnrctl start</p>
<p>LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 19-JAN-2006 13:55:02</p>
<p>Copyright (c) 1991, 2005, Oracle.  All rights reserved.</p>
<p>Starting /u01/app/oracle/oracle/product/10.2.0/db_1//bin/tnslsnr: please wait&#8230;</p>
<p>TNSLSNR for Linux: Version 10.2.0.1.0 - Production<br />
System parameter file is /u01/app/oracle/oracle/product/10.2.0/db_1/network/admi n/listener.ora<br />
Log messages written to /u01/app/oracle/oracle/product/10.2.0/db_1/network/log/l istener.log<br />
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))<br />
Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(P ORT=1521)))</p>
<p>Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))<br />
STATUS of the LISTENER<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Alias                     LISTENER<br />
Version                   TNSLSNR for Linux: Version 10.2.0.1.0 - Production<br />
Start Date                19-JAN-2006 13:55:04<br />
Uptime                    0 days 0 hr. 0 min. 0 sec<br />
Trace Level               off<br />
Security                  ON: Local OS Authentication<br />
SNMP                      OFF<br />
Listener Parameter File   /u01/app/oracle/oracle/product/10.2.0/db_1/network/adm in/listener.ora<br />
Listener Log File         /u01/app/oracle/oracle/product/10.2.0/db_1/network/log /listener.log<br />
Listening Endpoints Summary&#8230;<br />
  (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))<br />
  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost.localdomain)(PORT=1521)))<br />
Services Summary&#8230;<br />
Service &#8220;PLSExtProc&#8221; has 1 instance(s).<br />
  Instance &#8220;PLSExtProc&#8221;, status UNKNOWN, has 1 handler(s) for this service&#8230;<br />
The command completed successfully</p>
<p>[oracle] $ sqlplus connect as sysdba</p>
<p>SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jan 19 13:55:21 2006</p>
<p>Copyright (c) 1982, 2005, Oracle.  All rights reserved.</p>
<p>Enter password: enter the DB password<br />
Connected to an idle instance.</p>
<p>SQL&gt; startup<br />
ORACLE instance started.</p>
<p>Total System Global Area  285212672 bytes<br />
Fixed Size                  1218992 bytes<br />
Variable Size              92276304 bytes<br />
Database Buffers          188743680 bytes<br />
Redo Buffers                2973696 bytes<br />
Database mounted.<br />
Database opened.<br />
SQL&gt; exit</p>
<p>&#8212;-</p>
<p>Credits:</p>
<p>Much of the content of this document came from dizwell&#8217;s site and few of the steps were updated for the Ubuntu 7.10 compatibility. And thanks to those other sites that makes our life easier. (http://www.zjant.com/index.php/date/2007/04/ , http://www.supinfo-projects.com/en/2006/oracle%5Fon%5Fubuntu/3/)</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/05/05/installing-oracle-10g-in-ubuntu-710-gutsy-gibbon/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Set Encoding in Eclipse</title>
		<link>http://blogs.exist.com/jcutaran/2008/03/31/set-encoding-in-ubuntu/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/03/31/set-encoding-in-ubuntu/#comments</comments>
		<pubDate>Mon, 31 Mar 2008 07:56:12 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Eclipse]]></category>

		<category><![CDATA[Eclipse Encoding]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/03/31/set-encoding-in-ubuntu/</guid>
		<description><![CDATA[Problem was, when i check out our project, all &#8216;»&#8217; characters were being replaced with &#8216;ï¿½&#8217;.
I didn&#8217;t knew this was happening until Ken told me.
Ken figured out that it was an encoding issue.
I was using Eclipse 3.2 and Ken was using 3.3.
So when i went to my Eclipse Edit menu &#8211;&#62; Set Encoding.
My eclipse default [...]]]></description>
			<content:encoded><![CDATA[<p>Problem was, when i check out our project, all &#8216;»&#8217; characters were being replaced with &#8216;ï¿½&#8217;.<br />
I didn&#8217;t knew this was happening until Ken told me.</p>
<p>Ken figured out that it was an encoding issue.<br />
I was using Eclipse 3.2 and Ken was using 3.3.<br />
So when i went to my Eclipse Edit menu &#8211;&gt; Set Encoding.<br />
My eclipse default was  UTF-8.</p>
<p>So I went to see what was Ken&#8217;s and it was &#8216;ISO-8859-1&#8242; encoding</p>
<p>Oh well, need to restore those characters&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/03/31/set-encoding-in-ubuntu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Dual Boot Issues: Reinstalled Windows</title>
		<link>http://blogs.exist.com/jcutaran/2008/03/28/dual-boot-issues-reinstalled-windows/</link>
		<comments>http://blogs.exist.com/jcutaran/2008/03/28/dual-boot-issues-reinstalled-windows/#comments</comments>
		<pubDate>Fri, 28 Mar 2008 07:13:47 +0000</pubDate>
		<dc:creator>Julius Cutaran</dc:creator>
		
		<category><![CDATA[Ubuntu]]></category>

		<category><![CDATA[Ubuntu Grub]]></category>

		<guid isPermaLink="false">http://blogs.exist.com/jcutaran/2008/03/28/dual-boot-issues-reinstalled-windows/</guid>
		<description><![CDATA[My windows did get a virus. Did try to remove it, a system restore, but none worked. Last resort&#8230; REINSTALL
After re-installation I needed my GRUB(the that lets you choose your operating system when booting) back.
1. Boot Ubuntu Live CD
2. open a terminal, if your in GUI mode
3. run #sudo grub
4. find your grub in preparation [...]]]></description>
			<content:encoded><![CDATA[<p>My windows did get a virus. Did try to remove it, a system restore, but none worked. Last resort&#8230; REINSTALL</p>
<p>After re-installation I needed my GRUB(the that lets you choose your operating system when booting) back.</p>
<p>1. Boot Ubuntu Live CD<br />
2. open a terminal, if your in GUI mode<br />
3. run <code>#sudo grub</code><br />
4. find your grub in preparation for the root command execute <code>find /boot/grub/stage1</code><br />
5. execute <code>root  (&lt;device,partition&gt;)</code>,  if step 4 returns  (hd0, 5)   you do <code>root (hd0, 5)</code><br />
6. execute <code>setup  (&lt;device&gt;)</code>, following step 5 it would be <code>setup (hd0)</code><br />
7. execute quit, then reboot.</p>
<p>I did find some help through google. But Venz Hua has better document and I&#8217;m placing it here. <img src='http://blogs.exist.com/jcutaran/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.exist.com/jcutaran/2008/03/28/dual-boot-issues-reinstalled-windows/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
