<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1270360567124944607</id><updated>2011-04-21T18:45:02.682-07:00</updated><category term='Oracle Generic Connectivity Errors and Solutions'/><title type='text'>BusIntel</title><subtitle type='html'>Business Intelligence and the things I learn along the way.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://busintel.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1270360567124944607/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://busintel.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>mlthomps</name><uri>http://www.blogger.com/profile/00131627624748772473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1270360567124944607.post-5544834500473724015</id><published>2009-02-24T15:36:00.000-08:00</published><updated>2009-02-24T16:01:30.995-08:00</updated><title type='text'>Starting 11g Database gives  ORA-00119 and ORA-00132</title><content type='html'>I recently installed a new Oracle11g database on my Linux server.  I noticed&lt;br /&gt;when starting it for the first time I got the following two messages:&lt;br /&gt;&lt;br /&gt;ORA-00119: invalid specification for system parameter LOCAL_LISTENER&lt;br /&gt;ORA-00132: syntax error or unresolved network name 'LISTENER_ORA11GR1'&lt;br /&gt;&lt;br /&gt;After a bit of research I found that Oracle needs an entry in the tnsnames.ora&lt;br /&gt;for the listener where you are using a non-default port number (1522 in my case).&lt;br /&gt;&lt;br /&gt;The new entry will look like:&lt;br /&gt;&lt;br /&gt;LISTENER_ORA11GR1 = (ADDRESS = (PROTOCOL = TCP)(HOST = soleil)(PORT = 1522))&lt;br /&gt;&lt;br /&gt;After adding this entry the instance started fine.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270360567124944607-5544834500473724015?l=busintel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://busintel.blogspot.com/feeds/5544834500473724015/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1270360567124944607&amp;postID=5544834500473724015' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1270360567124944607/posts/default/5544834500473724015'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1270360567124944607/posts/default/5544834500473724015'/><link rel='alternate' type='text/html' href='http://busintel.blogspot.com/2009/02/starting-11g-database-gives-ora-00119.html' title='Starting 11g Database gives  ORA-00119 and ORA-00132'/><author><name>mlthomps</name><uri>http://www.blogger.com/profile/00131627624748772473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1270360567124944607.post-7955788069045732181</id><published>2008-11-19T16:46:00.000-08:00</published><updated>2008-11-19T17:05:53.478-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Oracle Generic Connectivity Errors and Solutions'/><title type='text'>Oracle Generic Connectivity Errors and Solutions</title><content type='html'>Here is a list of common Oracle HS errors I've come across.  Hopefully these notes will help save time finding the causes.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Oracle Errors:  ORA-28545, ORA-02063&lt;br /&gt;&lt;br /&gt;SQL&gt; desc my_table@my_db_lnk&lt;br /&gt;ERROR:&lt;br /&gt;ORA-28545: error diagnosed by Net8 when connecting to an agent&lt;br /&gt;NCRO: Failed to make RSLV connection&lt;br /&gt;ORA-02063: preceding 2 lines from MY_DB_LINK&lt;br /&gt;&lt;br /&gt;Cause:  listener was not restarted.  Run lsnrctl reload.&lt;br /&gt;&lt;br /&gt;          ---------------------------------------&lt;br /&gt;&lt;br /&gt;Oracle Errors:  ORA-28545, ORA-02063&lt;br /&gt;&lt;br /&gt;SQL&gt; create database link my_db_lnk connect to "scott" identified by&lt;br /&gt;"tiger" using 'MY_TNS_ALIAS';&lt;br /&gt;&lt;br /&gt;Database link created.&lt;br /&gt;&lt;br /&gt;SQL&gt; desc my_table@my_db_lnk&lt;br /&gt;ERROR:&lt;br /&gt;ORA-28545: error diagnosed by Net8 when connecting to an agent Unable to retrieve text of NETWORK/NCR message 65535&lt;br /&gt;ORA-02063: preceding 2 lines from MY_DB_LNK&lt;br /&gt;&lt;br /&gt;Cause:  HOST and/or PORT in tnsnames.ora is incorrect&lt;br /&gt;&lt;br /&gt;          ---------------------------------------&lt;br /&gt;&lt;br /&gt;Oracle Errors:  ORA-28545, ORA-02063&lt;br /&gt;&lt;br /&gt;ERROR:&lt;br /&gt;ORA-28545: error diagnosed by Net8 when connecting to an agent&lt;br /&gt;Unable to retrieve text of NETWORK/NCR message 65535&lt;br /&gt;ORA-02063: preceding 2 lines from MY_DB_LINK&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Cause:   Problem found on AIX and Oracle10g.  Need to add the ENVS=LIBPATH line ( as below) in the listener.ora.&lt;br /&gt;&lt;br /&gt;(SID_DESC=&lt;br /&gt;                (SID_NAME=MY_SID)&lt;br /&gt;                (ORACLE_HOME=/u01/oracle/product/10.2.0.2)&lt;br /&gt;                (PROGRAM=hsodbc)&lt;br /&gt;                (ENVS=LIBPATH=/u01/oracle/product/10.2.0.2/lib32)&lt;br /&gt;        )&lt;br /&gt;&lt;br /&gt;          ---------------------------------------&lt;br /&gt;&lt;br /&gt;Oracle Errors:  ORA-28500, ORA-02063&lt;br /&gt;&lt;br /&gt;select CUSTOMER from my_view&lt;br /&gt;                              *&lt;br /&gt;ERROR at line 1:&lt;br /&gt;ORA-28500: connection from ORACLE to a non-Oracle system returned this message:&lt;br /&gt;[Generic Connectivity Using ODBC]DRV_InitTdp: errors.h (1997): ;&lt;br /&gt;(SQL State: 00000; SQL Code: 0)&lt;br /&gt;ORA-02063: preceding 3 lines from MY_DB_LINK&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Cause:  The DSN in the $ORACLE_HOME/hs/admin/init.ora is incorrectly defined.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1270360567124944607-7955788069045732181?l=busintel.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://busintel.blogspot.com/feeds/7955788069045732181/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1270360567124944607&amp;postID=7955788069045732181' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1270360567124944607/posts/default/7955788069045732181'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1270360567124944607/posts/default/7955788069045732181'/><link rel='alternate' type='text/html' href='http://busintel.blogspot.com/2008/11/oracle-generic-connectivity-errors-and.html' title='Oracle Generic Connectivity Errors and Solutions'/><author><name>mlthomps</name><uri>http://www.blogger.com/profile/00131627624748772473</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
