<?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>Vincen Collins</title>
	<atom:link href="http://www.vincencollins.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.vincencollins.com/blog</link>
	<description></description>
	<lastBuildDate>Mon, 02 May 2011 03:12:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Configuring localhost for Oracle XE on Windows 7</title>
		<link>http://www.vincencollins.com/blog/?p=7</link>
		<comments>http://www.vincencollins.com/blog/?p=7#comments</comments>
		<pubDate>Mon, 02 May 2011 02:57:45 +0000</pubDate>
		<dc:creator>vincencollins</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[ORA-12514]]></category>
		<category><![CDATA[TNS-12514]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.vincencollins.com/blog/?p=7</guid>
		<description><![CDATA[While at a client the installation of Oracle XE set the host to my computer name which included a sub-domain that would not resolving because I was on the client network. This was causing an ORA-12545 error (Connect failed because &#8230; <a href="http://www.vincencollins.com/blog/?p=7">Continue reading <span class="pjgm-metanav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>While at a client the installation of Oracle XE set the host to my computer name which included a sub-domain that would not resolving because I was on the client network.  This was causing an ORA-12545 error (Connect failed because target host or object does not exist) which was resolved by change the host name to 127.0.0.1 in C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN\listener.ora and C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN\tnsnames.ora</p>
<p>Next I encountered an ORA-12514 error (listener does not currently know of service requested in connect descriptor) that took me awhile to figure out.  I finally found the answer in this <a href="http://forums.oracle.com/forums/thread.jspa?threadID=963391">thread</a>.  Turns out the XE service needs to be registered by adding the following SID_DESC to the SID_LIST in C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN\listener.ora</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;">(SID_DESC =
      (SID_NAME = XE)
      (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
    )</pre></td></tr></table></div>

<p>Here is the complete C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN\listener.ora file.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
</pre></td><td class="code"><pre class="xml" style="font-family:monospace;">SID_LIST_LISTENER =
  (SID_LIST =
    (SID_DESC =
      (SID_NAME = PLSExtProc)
      (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
      (PROGRAM = extproc)
    )
    (SID_DESC =
      (SID_NAME = CLRExtProc)
      (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
      (PROGRAM = extproc)
    )
    (SID_DESC =
      (SID_NAME = XE)
      (ORACLE_HOME = C:\oraclexe\app\oracle\product\11.2.0\server)
    )
  )
&nbsp;
LISTENER =
  (DESCRIPTION_LIST =
    (DESCRIPTION =
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
      (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    )
  )
&nbsp;
DEFAULT_SERVICE_LISTENER = (XE)</pre></td></tr></table></div>

<p>Happy Coding!<br />
Vincen Collins</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vincencollins.com/blog/?feed=rss2&#038;p=7</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://www.vincencollins.com/blog/?p=1</link>
		<comments>http://www.vincencollins.com/blog/?p=1#comments</comments>
		<pubDate>Wed, 23 Feb 2011 15:51:11 +0000</pubDate>
		<dc:creator>vincencollins</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vincencollins.com/blog/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vincencollins.com/blog/?feed=rss2&#038;p=1</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

