Database not getting connected from sql developer(Vendor code 20)

Am getting the following error while connecting db from sql dev
"network adapter could not establish connection vendor code 20"
FYI - database is up and running fine in sqlplus, and am not able to find the service in lnsrctl. As am using OIM db as service name while its showing CLRExtProc.
Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
STATUS of the LISTENER
Alias LISTENER
Version TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Prod
ction
Start Date 21-NOV-2012 20:28:48
Uptime 0 days 0 hr. 27 min. 32 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File d:\app\Karan\product\11.2.0\dbhome_1\network\admin\li
tener.ora
Listener Log File d:\app\karan\diag\tnslsnr\Karan-PC\listener\alert\log
xml
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=1521)))
Services Summary...
Service "CLRExtProc" has 1 instance(s).
Instance "CLRExtProc", status UNKNOWN, has 3 handler(s) for this service...
The command completed successfully
Also contents of tnsnames.ora and listener.ora are shown below
# listener.ora Network Configuration File: d:\app\Karan\product\11.2.0\dbhome_1\network\admin\listener.ora
# Generated by Oracle configuration tools.
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = CLRExtProc)
(ORACLE_HOME = d:\app\Karan\product\11.2.0\dbhome_1)
(PROGRAM = extproc)
(ENVS = "EXTPROC_DLLS=ONLY:d:\app\Karan\product\11.2.0\dbhome_1\bin\oraclr11.dll")
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
ADR_BASE_LISTENER = d:\app\Karan
---------------------------------------------tnsnames.ora-----------------------------------------------------
# tnsnames.ora Network Configuration File: d:\app\Karan\product\11.2.0\dbhome_1\network\admin\tnsnames.ora
# Generated by Oracle configuration tools.
OIMDB =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = OIMDB)
ORACLR_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1521))
(CONNECT_DATA =
(SID = CLRExtProc)
(PRESENTATION = RO)
FYI - yesterday all database was running fine. As I was trying to do some modifications in tnsnames.ora and listener.ora, I was unable to save them, as permission is denied.
Kindly suggest.....
Regards,
KK

stop everything OIM, Database and listener.
now open your listener.ora and put below ( backup the original one somewhere)
LISTENER=
(DESCRIPTION=
(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))
(ADDRESS=(PROTOCOL=ipc)(KEY=extproc))))
SID_LIST_LISTENER=
(SID_LIST=
(SID_DESC=
(GLOBAL_DBNAME=oimdb)
(ORACLE_HOME=d:\app\Karan\product\11.2.0\dbhome_1)
(SID_NAME=OIMDB)))
LISTENER=
(DESCRIPTION=
(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))
(ADDRESS=(PROTOCOL=ipc)(KEY=extproc))))
SID_LIST_LISTENER=
(SID_LIST=
(SID_DESC=
(GLOBAL_DBNAME=oimdb)
(ORACLE_HOME=d:\app\Karan\product\11.2.0\dbhome_1)
(SID_NAME=oimdb))
(SID_DESC=
(SID_NAME=plsextproc)
(ORACLE_HOME=d:\app\Karan\product\11.2.0\dbhome_1)
(PROGRAM=extproc)))
1.set ORACLE_SID at command prompt . like set ORACLE_SID=OIMDB
2.start listener (lsnrctl start)
3.start database.
4. check this query ( select instance_name from v$instance;)
5. check listener status( lsnrctl status)
if still doesn't work try same step with the original listener.ora file

Similar Messages

  • Connect from SQL Developer to several SQL Server instances

    Our SQL Server has more than one instance, but I see only one instance of them trying to connect from SQL Developer 1.2 to SQL Server. How I should define the connection information? Usually we connect to SQL Server by <hostname>/<instancename> and then the database name as CatalogName (Initial Catalog). In the Oracle world you can give only the hostname, a port number and the database name. How I can convince the SQL Developer to choose one of our SQL Server instances?

    Hi user627927,
    Bug/Enhancement request already logged.
    We have not got this configuration in house, two people have suggested workarounds but we are unable to test them for now. The last person was unable to get these workarounds working, and we have not confirmed them in house.
    Can you get the instances connected through two different ports?
    It would be great if you could confirm either workaround.
    -Turloch
    *1/Suggestion 1 change the URL through SQLDevelopers xml connection store.
    *2/Overload the port field to have instance in the eventual url
    *1/Suggestion 1 change the url through SQLDevelopers xml connection store.
    [Note it is probably simpler to connect a dummy connection through the connection dialog as usual save it (you cannot connect) and then add the instance information rather than having to enter all the information in an unmanaged way.]
    Hi Naveen,
    I had same problem as you and user579801. I managed to resolve it by doing the following.
    1. Locate the file called IDEConnections.xml in the folder where you have installed SQL Developer (eg. c:\sql developer\sqldeveloper\system\oracle.jdeveloper.db.connection.11.1.1.0.11.42.62).
    2. Create the following entries under <connections> tag.
    <connection>
    <URL>jdbc:jtds:sqlserver://\\.\;namedPipe=true;instance=SQLDBNam;</URL>
    <ConnectionName>SQLServer</ConnectionName>
    <user>SQLUser</user>
    <ConnectionType>JDBC</ConnectionType>
    <DeployPassword>false</DeployPassword>
    <JdbcDriver>net.sourceforge.jtds.jdbc.Driver</JdbcDriver>
    <RaptorConnectionType>Microsoft SQL Server</RaptorConnectionType>
    </connection>
    3. Save the file; Close and re-open the SQL Developer and try connecting.
    Hope this will solve your problem. Good luck.
    Regards
    Raja
    *2/Overload the port field to have instance in the eventual url
    This took some figuring out but I cracked it in the end....
    SQLServer tab:
    Hostname: <servername>
    Port: <portnumber>/<databasename>;instance=<instancename>
    so for me the Port field looks like this: 1433/Gaffa;instance=SQL01
    That should now connect to a named instance SQL Server.
    Paul Fairhurst

  • Able to connect from SQL-Assistant BUT unable to connect from Sql Developer

    Hello,
    I have been troubling with this issue for the last two weeks...tried so much, but could not able to resolve....
    sqlplus username/password@IPAddress:port/ServiceName
    I am able to connect to DATABASE from SQLAssistant only when I provide string like ABOVE........If I dont mention the SERVICE, m unable to connect to DB...
    Now the biggest issue is with SQL Developer.....m not at all able to connect to DB using SQL Developer....I tried all options...but no use...
    waiting for your reply......
    Thanks Much in Advance.....

    What have you tried, and what error messages are you getting?
    When you create a connection in SQL Developer, you should specify IPAddress,port,ServiceName as in your sqlplus connect string.

  • OSR registry not getting connected from Jdeveloper 10.1.3.3.

    Hi,
    i am getting below error while connecting to OSR registry link. i.e, while making a new UDDI connection from JDev.
    Testing connection with no proxy...
    Contacting http://calvin.fcoracle.com:7800/registry/uddi/web...
    The inquiry endpoint could not be contacted. Test failed.
    Unsupported response content type &quot;text/html; charset=UTF-8&quot;, must starts with &quot;text/xml&quot;. Response was:
    &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
    &lt;html&gt;
    &lt;head&gt;
    &lt;META http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=UTF-8&quot;&gt;
    &lt;title&gt;Registry Control 10.1.3.1 - Home&lt;/title&gt;
    &lt;base href=&quot;http://calvin.fcoracle.com:7800/registry/uddi/webdata/&quot;/&gt;
    &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;script/uddi.css&quot;/&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/cookies.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/wf.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/uddi.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/tree.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/init.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/ctxmenu2.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/sizer.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/tabswitch.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/fswitch.js&quot;&gt;&lt;/script&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/tree_scroller.js&quot;&gt;&lt;/script&gt;
    &lt;noscript&gt;???pageHeader_notSupportJavascript???&lt;/noscript&gt;
    &lt;/head&gt;
    &lt;body bgcolor=&quot;#FFFFFF&quot; leftmargin=&quot;0&quot; topmargin=&quot;0&quot; rightmargin=&quot;0&quot; bottommargin=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; onResize=&quot;redrawScrollable()&quot;&gt;
    &lt;table&gt;
    &lt;form name=&quot;form&quot; method=&quot;POST&quot; &gt;
    &lt;input type=&quot;hidden&quot; name=&quot;actionId&quot;/&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;targetTask&quot;/&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;targetDepth&quot;/&gt;
    &lt;input type=&quot;hidden&quot; name=&quot;redirect&quot;/&gt;
    &lt;/table&gt;
    &lt;div style=&quot;position:absolute;top:0px;left:50px;width:350px;height:50px;display:none;&quot; id=&quot;alertDiv&quot; name=&quot;alertDiv&quot;&gt;&lt;/div&gt;
    &lt;div style=&quot;position:absolute;top:0px;left:0px;width:10px;height:10px;display:none;background:url(&apos;gfx/tree/selector.gif&apos;);border:1px solid #606060;&quot; id=&quot;selectorDiv&quot; name=&quot;selectorDiv&quot;&gt;&lt;/div&gt;
    &lt;script language=&quot;JavaScript&quot;&gt;
    var navObjs=new Array();
    navObjs[0]=&apos;mbrowse&apos;;
    navObjs[1]=&apos;msearch&apos;;
    navObjs[2]=&apos;mpublish&apos;;
    &lt;/script&gt;
    &lt;!-- using localizable script, fixed by utdanh --&gt;
    &lt;script language=&quot;JavaScript&quot; src=&quot;script/naviswitch.js&quot;&gt;&lt;/script&gt;
    &lt;!-- page content start --&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;middle&quot;&gt;
    &lt;img src=&quot;gfx/logo/uddi_logo.gif&quot; alt=&quot;Registry Control 10.1.3.1&quot; width=&quot;335&quot; height=&quot;33&quot; border=&quot;0&quot; &gt;
    &lt;/td&gt;
    &lt;td align=&quot;right&quot; valign=&quot;bottom&quot; width=&quot;100%&quot; nowrap&gt;
    &lt;span class=&quot;registryName&quot;&gt;OracleAS Service Registry&lt;/span&gt;&amp;nbsp;
    &lt;br&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/limits&apos;,&apos;root##834&apos;,-1,false);&quot; title=&quot;&quot;&gt; Licensing Information.&lt;/a&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;100%&quot; valign=&quot;bottom&quot; align=&quot;right&quot; nowrap&gt;
    &lt;a href=&quot;http://calvin.fcoracle.com:7800/registry/uddi/web#Main&quot; title=&quot;Go go the main content of page&quot;&gt;Skip to content&lt;/a&gt;&amp;nbsp;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/createAccount&apos;,&apos;root##835&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Register&quot;&gt; Register&lt;/a&gt;
    &amp;nbsp;
    &lt;/td&gt;
    &lt;td valign=&quot;bottom&quot; nowrap&gt;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;&apos;,&apos;root#login#836&apos;,-1,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Login&quot;&gt; Login&lt;/a&gt;
    &amp;nbsp;
    &lt;/td&gt;
    &lt;td valign=&quot;bottom&quot;&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;&apos;,&apos;root#refresh#837&apos;,-1,false);&quot;&gt;&lt;img src=&quot;gfx/icon/refresh.gif&quot; style=&quot;border: 0;&quot; title=&quot;Refresh page content&quot; alt=&quot;Refresh&quot; width=&quot;16&quot; height=&quot;16&quot; align=&quot;absmiddle&quot; border=&quot;0&quot;/&gt;&lt;/a&gt;
    &lt;/td&gt;
    &lt;td valign=&quot;bottom&quot;&gt;
    &amp;nbsp;&lt;a href=&quot;../doc/index.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;gfx/icon/help.gif&quot; width=&quot;16&quot; height=&quot;16&quot; border=&quot;0&quot; alt=&quot;Help&quot; title=&quot;Registry Documentation (Open link in a new window)&quot; align=&quot;absmiddle&quot;&gt;
    &lt;/a&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td colspan=&quot;4&quot;&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot; class=&quot;headerSeperateLine&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;34&quot; height=&quot;8&quot;&gt;&lt;img src=&quot;gfx/tabs/beginLine.gif&quot; alt=&quot;&quot; width=&quot;34&quot; height=&quot;8&quot; align=&quot;middle&quot;/&gt;&lt;/td&gt;
    &lt;td width=&quot;100%&quot; height=&quot;8&quot; class=&quot;seperateLine&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;1&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&lt;/td&gt;
    &lt;td width=&quot;34&quot; height=&quot;8&quot;&gt;&lt;img src=&quot;gfx/tabs/endLine.gif&quot; alt=&quot;&quot; width=&quot;34&quot; height=&quot;8&quot; align=&quot;middle&quot;/&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td&gt;
    &amp;nbsp;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;&apos;,&apos;root##838&apos;,0,false);&quot;&gt; Home&lt;/a&gt;
    &lt;/td&gt;
    &lt;td colspan=&quot;3&quot; align=&quot;right&quot; class=&quot;welcomeMessage&quot; nowrap&gt;
    Welcome&amp;nbsp;
    Guest&amp;nbsp;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;div class=&quot;headerHorizon&quot;&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;
    &lt;tbody&gt;
    &lt;tr&gt;
    &lt;td class=&quot;lightHeaderHorizon&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/tbody&gt;
    &lt;/table&gt;
    &lt;/div&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;
    &lt;tr&gt;
    &lt;td class=&quot;darkHeaderHorizon&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;table border=&quot;0&quot; width=&quot;100%&quot; border=&quot;0&quot; bordercolor=&quot;#6600cc&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; id=&quot;UIheaderTable&quot; name=&quot;UIheaderTable&quot; &gt;
    &lt;tr&gt;
    &lt;td colspan=&quot;4&quot;&gt;
    &lt;table border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; width=&quot;100%&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTopLeftTabActive&quot; name=&quot;L_mbrowse&quot; id=&quot;L_mbrowse&quot; background=&quot;gfx/tabs/menu_tween_top_left_1.gif&quot; &gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td align=&quot;center&quot; nowrap=&quot;nowrap&quot; name=&quot;B_mbrowse&quot; id=&quot;B_mbrowse&quot; class=&quot;menuTabActive&quot;&gt;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:navSave(&apos;mbrowse&apos;);submitPage(&apos;form&apos;,&apos;/browseTaxonomy&apos;,&apos;root##839&apos;,0,false);&quot;&gt;Browse&lt;/a&gt;&amp;nbsp;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;
    &lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTopRightTabActive&quot; name=&quot;R_mbrowse&quot; id=&quot;R_mbrowse&quot; background=&quot;gfx/tabs/menu_tween_top_right_1.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;L_msearch&quot; id=&quot;L_msearch&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td align=&quot;center&quot; nowrap=&quot;nowrap&quot; name=&quot;B_msearch&quot; id=&quot;B_msearch&quot; class=&quot;menuTabInactive&quot;&gt;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/simpleFind&apos;,&apos;root##840&apos;,0,false);&quot;&gt;Search&lt;/a&gt;&amp;nbsp;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;
    &lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;R_msearch&quot; id=&quot;R_msearch&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;L_mpublish&quot; id=&quot;L_mpublish&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td align=&quot;center&quot; nowrap=&quot;nowrap&quot; name=&quot;B_mpublish&quot; id=&quot;B_mpublish&quot; class=&quot;menuTabInactive&quot;&gt;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:navSave(&apos;mpublish&apos;);submitToURL(&apos;form&apos;,&apos;/publish&apos;,&apos;root##841&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot;&gt;Publish&lt;/a&gt;&amp;nbsp;
    &lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;5&quot; height=&quot;1&quot; border=&quot;0&quot;/&gt;
    &lt;/td&gt;
    &lt;td width=&quot;3&quot; height=&quot;21&quot; class=&quot;menuTweenTabInactive&quot; name=&quot;R_mpublish&quot; id=&quot;R_mpublish&quot; background=&quot;gfx/0.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;100%&quot; class=&quot;menuTabInactive&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabActive&quot; name=&quot;U_mbrowse&quot; id=&quot;U_mbrowse&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabInactive&quot; name=&quot;U_msearch&quot; id=&quot;U_msearch&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabInactive&quot; name=&quot;U_mpublish&quot; id=&quot;U_mpublish&quot; &gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;3&quot; height=&quot;1&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td colspan=&quot;3&quot; class=&quot;menuUnderTabInactive&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td height=&quot;24&quot; colspan=&quot;3&quot; class=&quot;horizMainMenu&quot;&gt;
    &lt;div name=&quot;mbrowse&quot; id=&quot;mbrowse&quot; style=&quot;display:block&quot;&gt;
    &amp;nbsp;
    &lt;/div&gt;
    &lt;div name=&quot;msearch&quot; id=&quot;msearch&quot; style=&quot;display:none&quot;&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findBusiness&apos;,&apos;root##842&apos;,0,false);&quot; title=&quot;Search business&quot;&gt; Business&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findService&apos;,&apos;root##843&apos;,0,false);&quot; title=&quot;Search services&quot;&gt; Services&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findBinding&apos;,&apos;root##844&apos;,0,false);&quot; title=&quot;Search bindings&quot;&gt; Bindings&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findTModel&apos;,&apos;root##845&apos;,0,false);&quot; title=&quot;Search tModels&quot;&gt; tModels&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/directGet&apos;,&apos;root##846&apos;,0,false);&quot; title=&quot;Direct get&quot;&gt; Direct get&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findWsdl&apos;,&apos;root##847&apos;,0,false);&quot; title=&quot;Search WSDL&quot;&gt; WSDL&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findXML&apos;,&apos;root##848&apos;,0,false);&quot; title=&quot;Search XML&quot;&gt; XML&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findXsd&apos;,&apos;root##849&apos;,0,false);&quot; title=&quot;Search XSD&quot;&gt; XSD&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/findXslt&apos;,&apos;root##850&apos;,0,false);&quot; title=&quot;Search XSLT&quot;&gt; XSLT&lt;/a&gt;
    &amp;nbsp;
    &lt;/div&gt;
    &lt;div name=&quot;mpublish&quot; id=&quot;mpublish&quot; style=&quot;display:none&quot;&gt;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publish&apos;,&apos;root##851&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish&quot;&gt; Publish&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/subscriptions&apos;,&apos;root##852&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Subscriptions&quot;&gt; Subscriptions&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/custody&apos;,&apos;root##853&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Custody transfer&quot;&gt; Custody transfer&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishWsdl&apos;,&apos;root##854&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish WSDL&quot;&gt; WSDL&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishXML&apos;,&apos;root##855&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish XML&quot;&gt; XML&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishXsd&apos;,&apos;root##856&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish XSD&quot;&gt; XSD&lt;/a&gt;
    &amp;nbsp;&lt;img src=&quot;gfx/misc/separator.gif&quot; alt=&quot;&quot; width=&quot;7&quot; height=&quot;7&quot; border=&quot;0&quot;&gt;&amp;nbsp;
    &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/publishXslt&apos;,&apos;root##857&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot; title=&quot;Publish XSLT&quot;&gt; XSLT&lt;/a&gt;
    &amp;nbsp;
    &lt;/div&gt;
    &lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td height=&quot;10&quot; colspan=&quot;4&quot; background=&quot;gfx/table/sh.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;1&quot; height=&quot;10&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;/table&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
    &lt;tr&gt;&lt;td class=&quot;DialogOffset_5px&quot;&gt;
    &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt;
    &lt;!-- normal frame header begin --&gt;
    &lt;div class=&quot;DialogOffset_5px&quot;&gt;
    &lt;table border=&quot;0&quot; bordercolor=&quot;navy&quot; width=&quot;100%&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td width=&quot;10&quot; height=&quot;30&quot; background=&quot;gfx/table/bl.gif&quot; valign=&quot;top&quot;&gt;&lt;img src=&quot;gfx/table/cc01.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;30&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td height=&quot;30&quot; width=&quot;100%&quot; class=&quot;frameTop&quot; background=&quot;gfx/table/hdr_bg.gif&quot; nowrap&gt;&lt;div class=&quot;DialogName&quot; style=&quot;float:left&quot;&gt;Oracle Application Server Service Registry&amp;nbsp;&lt;/div&gt;
    &lt;/td&gt;
    &lt;td width=&quot;10&quot; height=&quot;30&quot; valign=&quot;top&quot; background=&quot;gfx/table/br.gif&quot;&gt;&lt;img src=&quot;gfx/table/c02.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;10&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td width=&quot;10&quot; height=&quot;30&quot; valign=&quot;top&quot; background=&quot;gfx/table/sv.gif&quot;&gt;&lt;img src=&quot;gfx/table/sc02.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;10&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
    &lt;td width=&quot;10&quot; background=&quot;gfx/table/bl.gif&quot;&gt;&lt;img src=&quot;gfx/0.gif&quot; alt=&quot;&quot; width=&quot;10&quot; height=&quot;305&quot; border=&quot;0&quot;&gt;&lt;/td&gt;
    &lt;td height=&quot;10&quot; valign=&quot;top&quot; class=&quot;DialogContent&quot; name=&apos;normalDialogPane&apos; id=&apos;normalDialogPane&apos;&gt;&lt;!-- normal frame header end --&gt;
    &lt;div class=&quot;mainDialogContent&quot;&gt;
    &lt;div&gt;
    &lt;!-- anchor to quickly Skip to Content --&gt;
    &lt;a name=&quot;Main&quot;&gt;&lt;/a&gt; &lt;!-- normal frame header end --&gt;
    &lt;p class=&quot;horizontalSpace&quot;&gt;
    &lt;ul class=&quot;bigtitle&quot;&gt;
    &lt;li style=&quot;width:80%&quot;&gt;&lt;h2 style=&quot;padding:0 !important;&quot;&gt;Oracle Application Server Service Registry 10.1.3.1&lt;/h2&gt;&lt;/li&gt;
    &lt;li style=&quot;text-align:right&quot;&gt;&lt;a class=&quot;docLink&quot; href=&quot;javascript:void(0);&quot; onClick=&apos;window.open(&quot;http://calvin.fcoracle.com:7800/registry/uddi/web/../doc/stepbystep/stepbystep.html&quot;,&quot;&quot;,&quot;scrollbars=yes,width=390, height=535, resizable=yes&quot;)&apos;&gt;Registry Step By Step Guide&lt;/a&gt;
    &lt;br/&gt;
    &lt;a href=&quot;javascript:submitPage(&apos;form&apos;,&apos;/about&apos;,&apos;root##804&apos;,-1,false);&quot; title=&quot;&quot;&gt; About Oracle Registry&lt;/a&gt;
    &lt;/li&gt;
    &lt;br/&gt;
    &lt;/ul&gt;
    &lt;/p&gt;
    &lt;p class=&quot;horizontalSpace&quot;&gt;Oracle Application Server Service Registry is the most complete and proven business services registry providing a foundation for the governance and lifecycle management of your business services. The Registry provides you with what you need to obtain enterprise-wide insight, control and economic leverage of your organization&apos;s business services assets. Much more than just a UDDI registry, the Registry captures and makes discoverable business service descriptions into a centrally managed, reliable and searchablelocation, becoming the system of record for your business services&lt;br/&gt;
    Oracle Application Server Service Registry provides two user interfaces.
    &lt;/p&gt;
    &lt;table width=&quot;100%&quot; border=&quot;0&quot;&gt;
    &lt;tr&gt;
    &lt;td valign=&quot;top&quot; width=&quot;50%&quot;&gt; &lt;h3 class=&quot;horizontalSpace&quot;&gt;Registry Control&lt;/h3&gt;
    &lt;ul class=&quot;list1&quot;&gt;
    &lt;li&gt;Using the &lt;b&gt;Registry Control&lt;/b&gt; users can browse and publish registry content, create subscription and perform ownership changes. The Registry Control is the primary console for administrators to perform registry management.&lt;/li&gt;
    &lt;li&gt;&lt;h4 class=&quot;horizontalSpace&quot;&gt;Getting Started with the Registry Control&lt;/h4&gt;&lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Register&lt;/b&gt; - &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;/createAccount&apos;,&apos;root##805&apos;,0,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot;&gt;Register&lt;/a&gt; so that you can later publish business service content to the registry
    &lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Login&lt;/b&gt; - &lt;a href=&quot;javascript:submitToURL(&apos;form&apos;,&apos;&apos;,&apos;root#login#806&apos;,-1,false,&apos;http://calvin.fcoracle.com:7800/registry/uddi/web&apos;);&quot;&gt;Login&lt;/a&gt; to publish content to the registry
    &lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Browse&lt;/b&gt; - &lt;a href=&quot;javascript:navSave(&apos;mbrowse&apos;);submitPage(&apos;form&apos;,&apos;/browseTaxonomy&apos;,&apos;root##807&apos;,0,false);&quot;&gt;Browse&lt;/a&gt; registry content using enterprise taxonomies
    &lt;/li&gt;
    &lt;li&gt;
    &lt;b&gt;Search&lt;/b&gt; - &lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/simpleFind&apos;,&apos;root##808&apos;,0,false);&quot;&gt;Search&lt;/a&gt; registry content including services, service providers, service endpoints and interfaces, and business service artifacts
    &lt;ul class=&quot;vlist2&quot;&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findBusiness&apos;,&apos;root##809&apos;,0,false);&quot; title=&quot;Search business&quot;&gt; Business &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findService&apos;,&apos;root##810&apos;,0,false);&quot; title=&quot;Search services&quot;&gt; Services &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findBinding&apos;,&apos;root##811&apos;,0,false);&quot; title=&quot;Search bindings&quot;&gt; Bindings &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findTModel&apos;,&apos;root##812&apos;,0,false);&quot; title=&quot;Search tModels&quot;&gt; tModels &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/directGet&apos;,&apos;root##813&apos;,0,false);&quot; title=&quot;Direct get&quot;&gt; Direct get &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findWsdl&apos;,&apos;root##814&apos;,0,false);&quot; title=&quot;Search WSDL&quot;&gt; WSDL &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findXML&apos;,&apos;root##815&apos;,0,false);&quot; title=&quot;Search XML&quot;&gt; XML &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findXsd&apos;,&apos;root##816&apos;,0,false);&quot; title=&quot;Search XSD&quot;&gt; XSD &lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href=&quot;javascript:navSave(&apos;msearch&apos;);submitPage(&apos;form&apos;,&apos;/findXslt&apos;,&apos;root##817&apos;,0,false);&quot; title=&quot;Search XSLT&quot;&gt; XSLT &lt;/a&gt;&lt;/li&gt;
    Pls. help me out with this..
    Rgds,
    Nikhil

    Hi,
    Yes, I am able to open the url and the results are:
    <?xml version="1.0" encoding="utf-8" ?>
    - <definitions name="UDDI_API_V3" targetNamespace="urn:uddi-org:api_v3generated/" xmlns:tns="urn:uddi-org:api_v3generated/" xmlns="http://schemas.xmlsoap.org/wsdl/">
    <import namespace="urn:uddi-org:api_v2" location="http://calvin.fcoracle.com:7800/registry/uddi/inquiry/2.0/wsdl" />
    <import namespace="urn:uddi-org:api_v3" location="http://calvin.fcoracle.com:7800/registry/uddi/inquiry/3.0/wsdl" />
    <import namespace="urn:uddi-org:inquiry" location="http://calvin.fcoracle.com:7800/registry/uddi/inquiry/1.0/wsdl" />
    </definitions>
    Did u get any clue to this now what might be the problem? Any services are down?
    Rgds,
    Nikhil

  • HTTP/1.1 302 Found error while trying to connect to Cloud database Trial version from SQL*Developer 4.0.3.16.

    Hi Oracle Cloud Gurus,
    I have signed up for Oracle Database Cloud Service Trial and activated the same. I am able to login to Apex applications, SQL Workshop etc but not able to connect from SQL*Developer on my local m/c.
    I configured the "Cloud Connection" by giving the provided username, password and URL. When I try to connect, I get the error - "HTTP/1.1 302 Found". Any ideas how to resolve this ?
    Here is the complete error stack:
    oracle.dbtools.raptor.cloud.auth.AuthenticationFailedException: HTTP/1.1 302 Found
    at oracle.dbtools.raptor.cloud.auth.basic.BasicAuthenticationEngine.doPost(BasicAuthenticationEngine.java:162)
    at oracle.dbtools.raptor.cloud.auth.basic.BasicAuthenticationEngine.authenticate(BasicAuthenticationEngine.java:63)
    at oracle.dbtools.raptor.cloud.auth.basic.GUIBasicAuthenticationEngine.authenticate(GUIBasicAuthenticationEngine.java:26)
    at oracle.dbtools.raptor.cloud.connection.ConnectionCreator.createConnection(ConnectionCreator.java:24)
    at oracle.dbtools.raptor.cloud.connection.CConnections$C.getConnection(CConnections.java:39)
    at oracle.dbtools.raptor.cloud.connection.CConnections.getConnection(CConnections.java:176)
    at oracle.dbtools.raptor.cloud.navigator.CloudConnection.openConnectionImpl(CloudConnection.java:127)
    at oracle.dbtools.raptor.cloud.navigator.CloudConnection.getConnection(CloudConnection.java:89)
    at oracle.dbtools.raptor.cloud.navigator.ConnectionTreeNode$LoadTask.doWork(ConnectionTreeNode.java:74)
    at oracle.dbtools.raptor.cloud.navigator.ConnectionTreeNode$LoadTask.doWork(ConnectionTreeNode.java:38)
    at oracle.dbtools.raptor.backgroundTask.RaptorTask.call(RaptorTask.java:193)
    at java.util.concurrent.FutureTask.run(FutureTask.java:262)
    at oracle.dbtools.raptor.backgroundTask.RaptorTaskManager$RaptorFutureTask.run(RaptorTaskManager.java:554)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
    at java.util.concurrent.FutureTask.run(FutureTask.java:262)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
    at java.lang.Thread.run(Thread.java:745)
    Caused by: java.io.IOException: HTTP/1.1 302 Found
    at oracle.dbtools.raptor.cloud.auth.basic.BasicAuthenticationHandler.handleError(BasicAuthenticationHandler.java:250)
    at oracle.dbtools.raptor.cloud.auth.basic.BasicAuthenticationHandler.handleError(BasicAuthenticationHandler.java:24)
    at oracle.dbtools.raptor.cloud.connection.CloudHander.handleResponse(CloudHander.java:38)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:945)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:919)
    at org.apache.http.impl.client.AbstractHttpClient.execute(AbstractHttpClient.java:910)
    at oracle.dbtools.raptor.cloud.connection.DefaultClient.executeRequest(DefaultClient.java:96)
    at oracle.dbtools.raptor.cloud.auth.basic.BasicAuthenticationEngine.doPost(BasicAuthenticationEngine.java:153)
    ... 17 more

    Can you please post some of the values you are using to connect to your Schema Service? (please redact the hostname URL for security purposes)
    You can also follow this tutorial:
    Data Loading and the Oracle Database Cloud Service
    Format is usually:
    username used to sign up
    password giving at sign up
    Service Instance URL

  • Could not connect to a DATABASE with localhost as Hostname from SQL develop

    I am not able to connect to any Database from SQL Developer by providing "localhost" as Hostname. I could able to connect by providing the IP(192.168.1.50) of the system.
    The problem here is If I am out of internet, My system does not have IP, So I am not able to connect to DB
    But I need to submit a project wheere I will not have any internet. Could you please let me know how to connect to DB using localhost
    Following are the listener.ora and tnsnames.ora files.
    listener.ora
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.50)(PORT = 1521))
    =============================
    tnsnames.ora
    # tnsnames.ora Network Configuration File: D:\oracle\product\10.2.0\db_2\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORA9 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.50)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ora9)
    ORA8 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.50)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = ora8)
    EMP =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.50)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = emp)
    ORCL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.50)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    Thanks in advance,
    Srini

    Oracle always uses DNS.
    DNS consults the local host file.
    Try in a command box
    ping localhost
    This should work.
    If this doesn't work you need to edit
    %WINDOWS%\'systems\drivers\etc\hosts
    The first line needs to read
    127.0.0.1 localhost
    Sybrand Bakker
    Senior Oracle DBA

  • Issue when connecting to database from SQL Developer tool

    Hi,
    I was trying to connect to a remote oracle database 10.2.0.5 (hosted at window 2008 R2 server) from my local SQL Developer tool.
    When setting up connection in SQL Developer tool, I was able to connect to the database by selecting TNS (Network Allias).
    However, it does not work when I choose Basic type with the same information (HOST, PORT, SID).
    What is the difference between TNS and Basic setting option? Please advise and assist.
    Thanks.
    Regards,
    Jia

    Hi JimSmith,
    Thanks for reply.
    TNS entry as below:
    ORCL_DB =
    (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 91.198.252.83)(PORT = 1521)) )
    (CONNECT_DATA = (SID = orcl) (SERVER = DEDICATED) ) )
    It works fine if I choose TNS (Network Allias: ORCL_DB).
    For the Basic setting:
    Hostname = 91.198.252.83
    Port = 1521
    SID = orcl
    The error I received when connecting to db based on Basic option is Failure -Io exception: The Network Adapter could not establish the connection.
    Below are the entries of SQLnet.ora. Any entry should I add into sqlnet.ora?
    SQLNET.AUTHENTICATION_SERVICES= (NONE)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    Appreciate your comment.
    Thanks.
    Regards,
    Jia

  • Failure to connect to 11G XE from Sql Developer

    Hi Gurus,
    I have been trying for more than a week to make this work. Basically I am trying to install XE database 11.2.0 on my windows 7 64 bit computer.
    I have had problems with the getting the listener up , finally managed to get it up by deleting the Oracle_home and reinstalling 11g XE.
    Changed the listener.ora file to include the sid XE - restarted th listener so now its working.
    -- I am able to start the instance from command prompt as
    SQL> conn / as sysdba
    Connected.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 1071333376 bytes
    Fixed Size 1388352 bytes
    Variable Size 620757184 bytes
    Database Buffers 444596224 bytes
    Redo Buffers 4591616 bytes
    ORA-00205: error in identifying control file, check alert log for more info**
    When I checked the log files here are the details
    from C:\Oracle11XE\app\oracle\diag\rdbms\xe\xe\alert
    <txt>ORA-00210: cannot open the specified control file
    ORA-00202: control file: &apos;C:\ORACLE11XE\APP\ORACLE\ORADATA\XE\CONTROL.DBF&apos;
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    </txt>
    Please let me know how I can resolved this issue. The eventual goal is to get the database up and running and be able to conenct from Sql Developer installed on the same machine.
    any help will be greatly appreciated.
    Here are some details
    tnsnames.ora
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = <Cumputername>)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SID = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    listener.ora
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = C:\Oracle11XE\app\oracle\product\11.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = CLRExtProc)
    (ORACLE_HOME = C:\Oracle11XE\app\oracle\product\11.2.0\server)
    (PROGRAM = extproc)
    (SID_DESC =
    (SID_NAME = XE)
    (ORACLE_HOME = C:\Oracle11XE\app\oracle\product\11.2.0\server)
    (PROGRAM = extproc)
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
    (ADDRESS = (PROTOCOL = TCP)(HOST = <ComputerName>)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)
    lsnrctl status result
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Produ
    ction
    Start Date 30-JAN-2013 11:35:47
    Uptime 0 days 0 hr. 0 min. 13 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\Oracle11XE\app\oracle\product\11.2.0\server\network
    \admin\listener.ora
    Listener Log File C:\Oracle11XE\app\oracle\diag\tnslsnr\ZaidHP\listener\
    alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=ZaidHP)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "XE" has 1 instance(s).
    Instance "XE", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    Thanks
    Edited by: user12026382 on Jan 30, 2013 10:57 AM

    Hi clcarter
    Thanks for your input. I actually did a complete de-install and re-install.
    The two things I did differently this time was
    1. Delete any ORACLE_HOME or ORACLE_SID variables that were existing and just to make sure check from cmd> set ORACLE_HOME - should return not defined.
    (This I found at a different forum)
    2. Run the setup (as administrator) this time.
    And you guessed it.. It worked. I was able to login to the database. Also could go to the database home page.
    Thanks for your inputs.
    On a side note.. since I am new to forums, I wanted to know how you quote things in the grey area as you did when you replied 'ORA-00205: error in identifying control file, check alert log for more info'.

  • Create trigger not audited when run from sql developer Version 3.2.20.09

    Creating or editing a trigger is not being stored in the audit table when run from sql developer.
    Here is a sample script to show the issue:
    Grant Connect,create table,create trigger To testuser Identified By testuser;
    create table testuser.testtab(t1 number);
    Select Count(*) From Dba_Audit_Trail Where Owner='TESTUSER';
    CREATE OR REPLACE TRIGGER testuser.testtab_bi_trg BEFORE
      Insert
          ON testuser.testtab FOR EACH ROW
    begin
      null;
    end;
    Select Count(*) From Dba_Audit_Trail  Where Owner='TESTUSER';
    drop user testuser cascade;
    If I run the script from sql developer the CREATE TRIGGER statement does not get audited.
    If I run the script from sql plus or All Arround Automations PL/SQL Developer the CREATE TRIGGER statement does get audited.
    If I edit the trigger from sql developer the CREATE TRIGGER statement does not get audited.
    If I edit the trigger from  All Arround Automations PL/SQL Developer the CREATE TRIGGER statement does get audited.

    DoyleFreeman wrote:
    Not sure what you mean by "perform the audit".
    Have you tested my script? Does the "Select Count(*) From Dba_Audit_Trail  Where Owner='TESTUSER';" increment by 1 after each of the ddl statements or only after the Create table statement.
    Your question doesn't have ANYTHING to do with sql developer and should be posted in the Database General forum
    https://forums.oracle.com/community/developer/english/oracle_database/general_questions
    Yes - and it works just fine once you ENABLE AUDITING. Your scripIt  does NOT include the statements or code used to ENABLE auditing and, specifically, enable auditing for triggers.
    Auditing doesn't just 'happen'; you have to enable it and you have to specify any non-default auditing that you want to perform.
    Have you read any of the extensive documentation about auditing to learn how to use it?
    See the Database Security Guide
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/auditing.htm
    Also see 'Auditing Functions, Procedures, Packages, and Triggers
    http://docs.oracle.com/cd/E11882_01/network.112/e16543/auditing.htm#BCGBEAGC
    And see the AUDIT statement in the SQL language doc for how to specify auditing of specific operations.
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_4007.htm
    Select count(*) From Dba_Audit_Trail  Where (Owner='SCOTT' or username = 'SCOTT')
    and action_name = 'CREATE TRIGGER';
    COUNT(*)
    0
    audit create trigger by scott
    CREATE OR REPLACE TRIGGER emp_copy_bi_trg BEFORE
      Insert
          ON emp_copy FOR EACH ROW
    begin
      null;
    end;
    Select count(*) From Dba_Audit_Trail  Where (Owner='SCOTT' or username = 'SCOTT')
    and action_name = 'CREATE TRIGGER';
    COUNT(*)
    1

  • File- Print not working from SQL Developer 1.2.1 Build MAIN-32.13

    File->Print not working from SQL Developer 1.2.1 Build MAIN-32.13.
    I downloaded sqldeveloper-1.2.1.3213.ZIP and extract to a local directory. From the extracted directory I ran ..\sqldeveloper\sqldeveloper.exe from Windows XP sp2. The program itself seems to run just fine but File-Print doesn't do anything. In Help-About, Java Platform is reported as 1.5.0_06 and Oracle IDE is 1.2.1.3213. I'm not sure where to look for what is causing the problem.
    Thanks

    I hadn't tried CTRL-P before but I did today. On the first attempt, I saw a small jump in the memory usage for sqldeveloper.exe as reported in Windows Task Manager. Otherwise, there was no change. A second CTRL-P in the same session produced a further bump but subsequent attempts in the same session produced no further change in CPU or Memory Usage.
    Using Task Manager to monitor this further, I tried File->Print again and saw that sqldeveloper would periodically climb to 1 or 2 percent CPU and consume a little more memory. After a minute or so, though, all activity stops again.
    I do not get a print dialog box from SQLDeveloper using either CTRL-P or File->Print

  • Could not get connections for 2 databases at the same time

    Hi, I have a session bean which calls 2 entity beans in one method. The 2 entity
    beans are located in different databases (different datasources and different
    pools). When running, I got the following error:
    Couldn't get connection:
    java.sql.SQLException: Connection has already been created in this tx context
    for pool named iitga_jdbc. Illegal attempt to create connection from another pool:
    iitdbmap_jdbc
    It seems WebLogic only allows one database connection within one method.
    Thanks,

    Hi Henry,
    If you want two beans bound to different database, you need
    to use XA pools with TXDataSources because in this case you
    have a distributed transaction.
    Set up you pools using XA drivers and make sure you use
    TXDatasources.
    If you tell us which database you use we may come up with
    sample pool configurations.
    "Henry Hiu" <[email protected]> wrote in message
    news:[email protected]..
    >
    Hi, I have a session bean which calls 2 entity beans in one method. The 2entity
    beans are located in different databases (different datasources anddifferent
    pools). When running, I got the following error:
    Couldn't get connection:
    java.sql.SQLException: Connection has already been created in this txcontext
    for pool named iitga_jdbc. Illegal attempt to create connection fromanother pool:
    iitdbmap_jdbcRegards,
    Slava imeshev

  • Connection ... able to connect using sql developer, but not sqlplus or toad too

    Hi folks, having this issue, with only one of my so many databases, what might be the reason and how to fix/correct this, please assist.
    Able to connect using sql developer, but not sqlplus or toad too; sqlplus error: ORA-12154: TNS:could not resolve the connect identifier specified
    thanks in advance.

    SQLDEVELOPER works since it use JDBC Thin & does not use tnsnames.ora
    ORA-12154 ALWAYS only occurs on SQL Client & no SQL*Net packets ever leave client system
    ORA-12154 [B]NEVER[/B] involves the listener, the database itself or anything on the DB Server.
    ORA-12154 occurs when client requests a connection to some DB server system using some connection string.
    TNS-03505 is thrown by tnsping & is same error as ORA-12154 thrown by sqlplus or others.
    The lookup operation fails because the name provided can [B]NOT[/B] be resolved to any remote DB.
    The analogous operation would be when you wanted to call somebody, but could not find their name in any phonebook.
    The most frequent cause for the ORA-12154  error is when the connection alias can not be found in tnsnames.ora.
    The lookup operation of the alias can be impacted by the contents of the sqlnet.ora file; specifically DOMAIN entry.
    TROUBLESHOOTING GUIDE: ORA-12154 & TNS-12154 TNS:could not resolve service name [ID 114085.1]
    http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/

  • System events not captured when call from SQL Developer?

    Hi,
    This seems a bit weird to me. I'm not sure if there is something going on that I'm not seeing, or just not aware of.
    Oracle 9.2.0.5.0
    SQL Developer 2.1.1.64
    If I run the following in sqlplus, I correctly get a trace file generated
    alter system set events '1403 trace name errorstack level 14';
    begin
    raise no_data_found;
    end;
    OS Pid: 553 executed alter system set events '1403 trace name errorstack level 14'
    Fri Apr  9 14:11:01 2010
    Errors in file /filer3/admin/dev2/udump/dev2_ora_553.trc:
    ORA-01403: no data found
    ORA-06512: at line 2However, If I run it from SQL Developer.. No trace file is generated. All i get in the log file is the alter system message
    OS Pid: 6806 executed alter system set events '1403 trace name errorstack level 14'Any idea what could be going on here? I'm not sure if this is an Oracle problem, or an SQL Developer problem? Or I'm just misunderstanding how this should work?
    Thanks
    Matt.

    Sorry I forgot to mention, I'm selecting Run script ( F5 ) in SQL Developer.. The script output in SQL Developer is
    alter system set succeeded.
    Error starting at line 71 in command:
    begin
    raise no_data_found;
    end;
    Error report:
    ORA-01403: no data found
    ORA-06512: at line 2
    01403. 00000 -  "no data found"
    *Cause:   
    *Action:

  • After moving from my home country (Poland) to the Middle East (UAE) with the same computer I can not get connected to Apple Store and iTunes Store.

    After moving from my home country (Poland) to the Middle East (UAE) with the same computer I can not get connected to Apple Store and iTunes Store. Any clue why?
    Regards,
    Maciek

    Click the round flag icon bottom right corner of the App Store window.

  • Vendor list - not get transaction from last three years

    Dear Sir,
    Can we have a list of vendor which are not get transaction from last three years ?
    Vijay Vadgaonkar
    SAP MM

    either you write a z-report
    or you download all vendor numbers from LFA1 table
    then run MC$4  transaction for analyzing period of last 3 year.
    download the vendor numbers from this report as well.
    Finally compare the both download (easiest with VLOOKUP formula) to find the delta, which are the inactive vendors.
    However, these are the inactive vendors from purchasing point of view only.
    vendors like restaurants and customs and tax authorities may only have financial postings and never purchasing activities.

Maybe you are looking for

  • Error in deploying on Netweaver 7.1

    I m migrating EJB DC to Netweaver 7.1. I dont want to migrate to EJB 3.0 . Just keep it as EJB 2.1. I have imported back up of old DC in New NWDI for Netweaver 7.1. but when i m deploying its giving me error as follows --- Deploying file(s):      F:\

  • Is there a way to programmatically change the scroll bar position?

    I am wanting to programmatically shift my front panel horizontally at a certain point during execution. I need a way of moving the scroll bar automatically. Does anyone have any suggestions? Thanks!

  • PROBLEM SOLVING GUILD! TRY IT

    I HAVE ENOUGH OF YOUR WEIRD PROBLEMS THAT CANT BE SOLVE. IF YOU READ ALL THE BELOW, ALL YOUR QUESTION IS BEING ANSWERED, FROM HISSING TO ETC... +You will find my own tweaks setting below of it... Distortion: Distortion is not just Booooo..sound you h

  • Cannot Close Process Order

    Dear All, We have an external phase for our process order. As the result of which we have a purchase requisition associated with that phase which is later converted into purchase order. After we complete the whole process cycle and try to close the p

  • Turn on computer today and adobe reader will not open

    I keep getting and error that says, "an internal error occurred" i've tried everything I have seen on the internet for this with no luck. Help