Rep-0501 Unable to Connect to Specified Database

We are getting error Rep-501 when trying to run reports from a form. The program modules are as follows:
Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bi
PL/SQL Release 10.2.0.2.0 - Production
CORE 10.2.0.2.0 Production
TNS for IBM/AIX RISC System/6000: Version 10.2.0.2.0 - Productio
NLSRTL Version 10.2.0.2.0 - Production
Please note that everything else is working fine. The reports run fine through the reports developer.
Any help appreciated.
Ammar

Hello,
A Remark about {oracle_home_infra}\bin
Reports is installed in the "Middle Tier" ORACLE_HOME, So you should use the tnsping provided in [oracle_home_middle_tier}\bin
On windows , TNS_ADMIN can be set as an environment variable :
ex : set TNS_ADMIN=c:\mytns
or in the file opmn.xml
ex:
<ias-component id="<RSName>" status="enabled" id-matching="false">
<process-type id="ReportsServer" module-id="ReportsServices">
<process-set id="<RSName>" restart-on-death="true" numprocs="1">
<environment>
<variable id="PATH" value="your_shell_path"/>
<variable id="TNS_ADMIN" value="c:\mytns"/>
</environment>
Regards

Similar Messages

  • Unable to connect to specified database

    I am using Reports 6i as part of a iAS server.
    From my application I can request a report and have it produced
    and then try running it again and have it return the message
    REP-0501 Unable to connect to specified database. There is no
    pattern to when it works and when it doesn't. It does seem to
    fail more when you change to a different report but it will also
    happen if you try the same report.
    I've checked the tnsnames file and it correctly has the database
    information.
    It is also happening on a second server as well. Both are new
    installs. Both iAS servers are NT connected to a Unix database.
    Connection to the database is done by a name server and
    connections using SQLPLUS have no problem.
    Critical issue to user, any ideas?

    This is a bug and is fixed in 10.1.2.3. Bug#5691620
    Please refer to mealik Note 414057.1
    Thks
    Sharath

  • REP-0309: Unable to connect to the specified database after three attempts.

    Hi,
    I am getting the following error in cloned instance when I developed one custom report (rdf) and copied that report into custom top reports folder. and ran that report using custom responsbility.
    that report query is like this
    select user_name,user_id,start_date,end_date from fnd_user.
    simple report...
    ==========================
    Current system time is 30-JUL-2008 11:36:16
    +-----------------------------
    | Starting concurrent program execution...
    +-----------------------------
    Arguments
    USERID='0'
    APPLLCSP Environment Variable set to :
    XML_REPORTS_XENVIRONMENT is :
    /u01/testora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    XENVIRONMENT is set to: /u01/testora/8.0.6/guicommon6/tk60/admin/Tk2Motif_UTF8.rgb
    Current NLS_LANG and NLS_NUMERIC_CHARACTERS Environment Variables are :
    American_America.UTF8
    Enter Password:
    Enter Password:
    Enter Password:
    REP-0501: Unable to connect to the specified database.
    ORA-01017: invalid username/password; logon denied
    REP-0501: Unable to connect to the specified database.
    ORA-12154: TNS:could not resolve service name
    REP-0501: Unable to connect to the specified database.
    ORA-12154: TNS:could not resolve service name
    REP-0309: Unable to connect to the specified database after three attempts. Access denied.
    Report Builder: Release 6.0.8.25.0 - Production on Wed Jul 30 11:36:16 2008
    (c) Copyright 1999 Oracle Corporation. All rights reserved.
    Enter Username: Enter Username:
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    Program exited with status 1
    Concurrent Manager encountered an error while running Oracle*Report for your concurrent request 779500.
    Review your concurrent request log and/or report output file for more detailed information.
    Executing request completion options...
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 30-JUL-2008 11:36:17
    =========================================
    what might be the problem...
    I developed the report in 10g Report Builder. and moved to 1.5.10.2 instance... ran that report in my report builder using apps user and..it is running fine in my report builder.

    hi bsubbu
    your password of custom application user schema at database level should be similar with the password at application level
    for instance your custom application schema name and password is xxgis/xxgis , we register this schema at application site by this navigation
    security> oracle > register >database username (xxgis) > password (xxgis)
    here you might have change your custom application user's password at database level using
    alter user xxgis identified by newpassword;
    change this user password at application site also :
    security> oracle > register> database username (xxgis) > password (newpassword)
    i understand this from the document
    Regards
    Message was edited by:
    user608721

  • REP-501: Unable to connect to the specified database in Report Server

    I Get a 'REP-501: Unable to connect to the specified database' error, when trying to call a report from a button on a Forms 10g application, through a report object:
    A portion of the code button:
    report_id := find_report_object('REPORT');
    set_report_object_property(report_id, report_destype, cache);
    set_report_object_property(report_id, report_desformat, 'PDF');
    set_report_object_property(report_id, report_server, p_server);
    set_report_object_property(report_id, report_filename, 'report.rep');
    report_job_id := run_report_object(report_id, lista_p);
    rep_status := report_object_status(report_job_id);
    job_number := length(servidor_rep) + 2;
    WHILE rep_status IN ('RUNNING', 'OPENING_REPORT', 'ENQUEUED') LOOP
    rep_status := report_object_status(report_job_id);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    web.show_document('http://'||server_name||'/reports/rwservlet/getjobid' ||
    substr(report_job_id, job_number) || '?server=' || p_server,'_blank');
    ELSE
    message('Error');
    END IF;
    The TSNMAMES configured in the OAS is as follows,
    LISTENERS_PROD =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = zurquivip.coope.local)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = poasvip.coope.local)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = irazuvip.coope.local)(PORT = 1521))
    DB01 =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = zurquivip.coope.local)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = poasvip.coope.local)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = irazuvip.coope.local)(PORT = 1521))
    (LOAD_BALANCE = yes)
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = DB01.COOPE.LOCAL)
    (FAILOVER_MODE =
    (TYPE = SELECT)
    (METHOD = BASIC)
    (RETRIES = 180)
    (DELAY = 5)
    This application does not fail in other databases, only in which I have the problem.
    The connection to the database through the SQLPLUS and other applications works well. The error is presented only when calling reports from the application.
    Another point is that the problem is presented with some users and not with others even they have the same conditions as roles, profiles, grant objects, etc.
    If i run my report with the following url applying directly on address bar of web browser then it run fine on web browser
    http://hostname.domain:port/reports/rwservlet?report=myreport.jsp&userid=un/pw@db&destype=cache&desformat=PDF
    OAS 10g and Database are on different machines.
    Please... any idea about this problem?
    Thanks!!

    I use a report object, imagine that sends connect information when creating the Job in the reports server.
    However the same problem happens if I call to report from the Internet Explorer with all parameters of connectivity, for example;
    http://hostname.domain:port/reports/rwservlet?report=myreport.rep&userid=un/pwdb@&destype=cache&desformat=PDF
    The only difference in this database is that it is configured in a RAC and as I mentioned the problem occurs with some users and not with others, even if they are identical.
    Thank for your help!

  • REP-501: Unable to connect to the specified database

    Hi, the following error occurs when running a paper report from forms:[
    2006/8/10 9:38:19:493] State 56016 (JobManager:updateJobStatus): Job 22 status is: Terminated with error:
    REP-501: Unable to connect to the specified database.
    [2006/8/10 9:38:19:494] Debug 50103 (JobManager:notifyWaitingJobs): Master job 22 notify its duplicated jobs.
    [2006/8/10 9:38:19:496] Debug 50103 (JobManager:updateJobStatus): Finished updating job: 22
    [2006/8/10 9:38:19:500] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Ready
    [2006/8/10 9:38:19:530] Exception 501 (): Unable to connect to the specified database.
    exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=501,
    java.lang.String errorString="Unable to connect to the specified database.",
    java.lang.String moduleName="REP"
         at oracle.reports.RWExceptionHelper.read(RWExceptionHelper.java:28)
         at oracle.reports.engine._EngineClassStub.run(_EngineClassStub.java:159)
         at oracle.reports.server.JobManager.runJobInEngine(JobManager.java:784)
         at oracle.reports.server.JobManager.runJobLocal(JobManager.java:1557)
         at oracle.reports.server.JobManager.dispatch(JobManager.java:896)
         at oracle.reports.server.ConnectionImpl.runJob(ConnectionImpl.java:1166)
         at oracle.reports.server.ConnectionPOATie.runJob(ConnectionPOATie.java:296)
         at oracle.reports.server.ConnectionPOA._invoke(ConnectionPOA.java:419)
         at oracle.reports.server.ConnectionPOA._invoke(ConnectionPOA.java:85)
         at com.inprise.vbroker.poa.POAImpl.invoke(POAImpl.java:2355)
         at com.inprise.vbroker.poa.ActivationRecord.invoke(ActivationRecord.java:104)
         at com.inprise.vbroker.GIOP.GiopProtocolAdapter.doRequest(GiopProtocolAdapter.java:492)
         at com.inprise.vbroker.IIOP.ServerProtocolAdapter.doRequest(ServerProtocolAdapter.java:64)
         at com.inprise.vbroker.GIOP.GiopProtocolAdapter.dispatchMessage(GiopProtocolAdapter.java:653)
         at com.inprise.vbroker.orb.TPDispatcherImpl$TPDispatcher.run(TPDispatcherImpl.java:99)
         at com.inprise.vbroker.orb.ThreadPool$PoolWorker.run(ThreadPool.java:76)
    I've included the connection in tnsnames.ora, connecting from forms and sqlplus works fine, only reports generate the error above. Any ideas ?

    In the engine tracefile i found this:
    [2006/8/10 10:48:54:64] Exception 50125 (org.omg.CORBA.TRANSIENT: vmcid: 0x0 minor code: 0 completed: No
         at com.inprise.vbroker.orb.DelegateImpl.verifyConnection(DelegateImpl.java:336)
         at com.inprise.vbroker.orb.DelegateImpl.is_local(DelegateImpl.java:496)
         at org.omg.CORBA.portable.ObjectImpl._is_local(ObjectImpl.java:354)
         at oracle.reports.server._EngineCommStub.ping(_EngineCommStub.java:91)
         at oracle.reports.engine.RWEngine.init(RWEngine.java:268)
         at oracle.reports.engine.RWEngine.main(RWEngine.java:55)
    ): Interner Fehler org.omg.CORBA.TRANSIENT: vmcid: 0x0 minor code: 0 completed: No
    [2006/8/10 10:48:55:79] Exception 50125 (org.omg.CORBA.OBJECT_NOT_EXIST: vmcid: 0x0 minor code: 0 completed: No
         at com.inprise.vbroker.ProtocolEngine.PortfolioImpl.getConnector(PortfolioImpl.java:79)
         at com.inprise.vbroker.ProtocolEngine.ManagerImpl.getConnector(ManagerImpl.java:147)
         at com.inprise.vbroker.orb.DelegateImpl._bind(DelegateImpl.java:196)
         at com.inprise.vbroker.orb.DelegateImpl.verifyConnection(DelegateImpl.java:365)
         at com.inprise.vbroker.orb.DelegateImpl.is_local(DelegateImpl.java:496)
         at org.omg.CORBA.portable.ObjectImpl._is_local(ObjectImpl.java:354)
         at oracle.reports.server._EngineCommStub.ping(_EngineCommStub.java:91)
         at oracle.reports.engine.RWEngine.init(RWEngine.java:268)
         at oracle.reports.engine.RWEngine.main(RWEngine.java:55)
    ): Interner Fehler org.omg.CORBA.OBJECT_NOT_EXIST: vmcid: 0x0 minor code: 0 completed: No
    Any ideas ? Didn't find anything useful in the web

  • Terminated with error: br REP-501: Unable to connect to the specified

    Hi,
    My report server can function nicely, always I can retrieve my report but I am also constantly facing the error when running report after a few minutes having my report servers on function.
         Terminated with error: <br>REP-501: Unable to connect to the specified database.
    I have 2 oracle home in my server, 1 is 9i (used for ODBC to connect to my database) and 1 more is 10g where my application server is.
    My both my TNS files have all the entries of the database server. In fact, we gets reports perfectly OK without problem until a certain time when the error pops up.
    Pls help

    I did not check the timeout because all reports were generated within seconds.

  • Terminated with error: br REP-501: Unable to connect to the specified data

    Dear All,
    Oracle DB 10g installed on Windows 2003 Server machine and client is Windows 7 Pro. Forms are running fine. If I run report by puting everything in URL it is also giving result. But only when i am trying to call report via form I get an error REP-501: Unable to connect to the specified data. The report log file contains below result. Is this something to to AUTHID=ANONYMOUS??? I need your assistance in this regard as I have been facing this problem since quite a long time now.
    [2011/10/22 3:55:55:34] Info 56013 (ConnectionManager:release): Connection 0 is released
    [2011/10/22 3:55:55:34] Info 50132 (JobObject:reset): jobid = 72 Get command line: REPORT=E:\AuditSys\twoconsecutive_estimate.jsp USERID=AUDITSYS@customerdb P_USERID="MAJAN" P_REPORTNAME="Bills which have been estimated for 3 months consecutively" P_REGIONCODE="" P_TARIFF="" P_PRIGOV="" P_AREAFROM="2" P_AREATO="91" P_BILLMONTH="9" P_BILLYEAR="2011" P_MONTHS="3" BATCH=YES DESTYPE=cache DESFORMAT=HTML AUTHID=ANONYMOUS
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): Job queue for jobid = 72 is 0
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): jobid = 72 is in current queue
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): Calling findDuplicatedJob for jobid = 72
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:findDuplicatedJob): Found no duplicated job for job 72
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): No Duplicate jobs for jobid = 72
    [2011/10/22 3:55:55:34] Debug 50103 (ConnectionImpl:runJob): Job 72 is Enqueued
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:firstToRun): job 72 is first to run
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager.runJobLocal): Trying to get engine for Job 72
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:getIdleEngine): Target max engines = 1
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:getIdleEngine): rwEng-0 is used = true
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:getIdleEngine): rwEng-0 state is 1
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Reserved
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager.runJobLocal): Job 72 got Engine rwEng-0
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:runJobInEngine): Job 72 calling setCommand on engine rwEng-0
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 3
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Running
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 5
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Idle
    [2011/10/22 3:55:55:34] Debug 50103 (JobManager:runJobInEngine): Send job 72 to engine rwEng-0
    [2011/10/22 3:55:55:34] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 3
    [2011/10/22 3:55:55:34] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Running
    [2011/10/22 3:55:55:96] State 56016 (JobManager:updateJobStatus): Job 72 status is: Terminated with error:
    REP-501: Unable to connect to the specified database.
    [2011/10/22 3:55:55:96] Debug 50103 (JobManager:notifyWaitingJobs): Master job 72 notify its duplicated jobs.
    [2011/10/22 3:55:55:96] Debug 50103 (JobManager:updateJobStatus): Finished updating job: 72
    [2011/10/22 3:55:55:96] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 1
    [2011/10/22 3:55:55:96] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Ready
    [2011/10/22 3:55:55:96] Exception 501 (): Unable to connect to the specified database.
    Thanks,
    Zia

    Dear guys, it is quite an urgency here and I am not getting any clue from anywhere else .... please give me some tips to handle the issue if anybody has some...
    Regards,

  • Application cannot proceed. Internal error occured. Contact your administrator. Error msg: Unable to connect to the database. Please make sure the database information specified in admin/includes/config.php are correct.

    After clicking in email link, I get the following message on Firefox page : " The application cannot proceed!
    An internal error occured. Please contact your administrator and describe the steps you took before you encounter this error message.Error msg: Unable to connect to the database. Please make sure the database information specified in admin/includes/config.php are correct."
    The email asked to install the latest Adobe Flashplayer version to have it working. I installed it, also updated my plug-ins and checked in safe mode that the extensions were not the problem. I also deleted the cookies an cache. Nothing seems to be working so far. I have the lastest version of Firefox 8.0.1 as well as Roboform 7. I noticed that the latest Firefox version has (x86) tagged to it. Does it refers to an 86 bits because my computer uses 32 or 64 bits only. I tried also different browsers and the message kept appearing. How do I resolve this problem?

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"

  • REP-501: Unable to connect to the specified data

    i found this error when i try to run reports in 11g-->>
    REP-501: Unable to connect to the specified data
    kindly provide solution regarding the same.

    Dear guys, it is quite an urgency here and I am not getting any clue from anywhere else .... please give me some tips to handle the issue if anybody has some...
    Regards,

  • After 11g upgrade "REP - 501: Unable to connect...."

    Hi All,
    There is a problem in one of our application which is deployed on 10g AS(10.1.2.0). The database it was connecting was upgraded to 11.2.0.3 from 10gR2.
    A report is not getting executed from a form. But from web browser the report is working in standalone. Below i have checked so far.
    Error I am getting:
    REP - 501: Unable to connect to the specified database.
    1. Disabled case sensitive login in the 11g database.
    2.Used FORMS_USERNAME_CASESENSITIVE = 1 in ORACLE_HOME/forms/server/default.env.
    3.Checked for zrclient.jar and rwrun.jar in classpath env variable.
    4.Changed Service_name to sid in the tns connect string.
    5.Restarted the whole opmn stack.
    6.Run the form in debug mode and find the username,password and connect string it is throwing to report is OK. I can connect through sqlplus.
    No error in forms server log in opmn or in report server.
    Please help.
    Now where to look at?
    Regards,
    Gourab

    Fabian wrote:
    Hi,
    Try few things,
    1) try tnsping <sid name>, specified in tnsnames.ora file from Oracle Application Server
    2) try running the report through the below url
    http://ipaddress:port/reports/rwservlet?report=report.rdf&userid=username/password@database&destype=cache&desformat=pdf&
    paramform=yes
    3)Trace the form and try running the report (u can google how to trace a form in 10gAS),errors would be mentioned in the trace file.The trace file will be generated in $ORACLE_HOME/forms/trace
    http://ipaddress:port/forms/frmservlet?config=(name_specified_in_formsweb.cfg)&record=forms
    Regards
    FabianThanks for your reply.
    1. tnsping is ok.
    2. reports is working in this way. Problem was when calling from forms.
    3. did not tried the trace. Before that the root cause of the problem was found.
    Well you may say this is a mistake from my side. The URL that was being generated by the form was with wrong report server name. The application has the capability to fetch the report server name from the server and store in a db table. From that table the report server name is read and URL is made. Don't know why, some developer wrote the report server name in the form instead of fetching it from the db. So there was a mismatch of the report server name and it was not running. All I was having access was screenshot of the error and the logs. So I missed out the URL.
    Regards,
    Gourab

  • Unable to connect to MySQL Database using MX

    I am unable to connect to MySQL database hosted on a remote
    server. I get the following error message:
    "HTTP Error Code 404 File Not Found. Here are some possible
    reason for the problem:
    1) There is no testing server running on the server machine.
    2) The testing server specified for this site does not map to
    the
    http://72.9.255.2/~keyitems/_mmServerScripts/MMHTTPDB.php
    URL. Verify that the URL Prefix maps to the root of the site."
    I have specified a testing server. My url is "
    http://72.9.255.2/~keyitems/........."
    For the URL prefix to the site's root folder, I listed the
    following:
    1.
    http://72.9.255.2/~keyitems/
    this did not work. I got the above error message.
    2.
    http://72.9.255.2/ this did not work
    also. I got the above error message.
    Any input would be great as I do not know where to start !!!
    Thank you

    Hi Ravi
    Glad to hear you solved this. It is very gratifying when one solves it alone, don't you think?
    Best wishes
    Michael

  • Unable to connect to 10g database from developer suite 10g

    I have loaded oracle 10g on my server with OS windows 2003 and it is working fine.Now I have installed Oracle developer suite 10g on windows XP client . we have configured local listener also and its entry is found in tnsnames.ora
    My database name is mbxdata .
    I have defined my host name as
    MBXDATA.mbxnet.com in tnsnames but I am unable to connect to the database since I get error as ORA-12154 : TNS :could not resolve the connect identifier specified.
    Please suggest matter urgent.
    Thanks in advance

    We are having the same issue now. Was this ever resolved? We created 2 new databases and added those entries in both tnsnames on the local pc, and the tnsnames on the application server. Able to connect via sqlplus, toad, etc. but not through forms developer. We are running 10g app server, 10g developer suite, 10g databases. Any ideas?
    Thanks,
    Deb

  • Unable to Connect to the database in RCU, Oracle11g XE on Laptop/Windows

    Software downloaded unzipped and installed from OTN
    OBIEE foundation 11.1.1.5
    Repository Creation Utility 11.1.1.5
    Oracle Database Express Edition 11.2
    Issues
    1. I installed Oracle 11g express edition. I am able to start/stop and run sql against the database however the homepage ("get started " accessed from Start > Programs > Oracle Database 11g XE > Get Started) does not work. This i will post in a separate thread but I am writing this anyway just in case it has some relevance.
    2, This is the one I need help with. Can you confirm that these are the parameters when I hit the "create" option in RCU because I get the error message saying I cannot connect.
    Hostname:This is the same as the hostname, when I go to cmd prompt like below
    C:>hostname<enter> That is what I am using.
    Port and Service :Can you confirm, Port = "1521" and Service = "XE". 1521 is the Database listener port when I installed Oracle 11g Database Express Edition. I am not putting the quotes in the boxes in the RCU.
    Should the service be OracleServiceXE - i have tried it but does not work.
    Anyway I get this message:
    Unable to connect to the database using the provided details.
    Please enter a valid hostname and port or check if the listener is up and running.
    Any ideas appreciated.
    By the way My lsnrctl status returns the following: (meaning the listeners are up!0
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\dir>lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.2.0 - Production on 13-MAR-2012 13:44
    :03
    Copyright (c) 1991, 2010, Oracle. All rights reserved.
    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 13-MAR-2012 10:55:11
    Uptime 0 days 2 hr. 48 min. 51 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\11.2.0\server\network\a
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\diag\tnslsnr\myspecifichostname\listene
    r\alert\log.xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myspecifichostname)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=myspecifichostname)(PORT=8080)))
    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...
    Edited by: ideakat on Mar 13, 2012 1:57 PM

    Hi,
    Like Abhi said, check your tnsnames.ora file to check the port number and service name is correct or not for the Express Edition database you have installed.
    and when you are running RCU installer, Please give system adminstrator account of OracleXE like 'sys' or 'system' account with confirmed port number and service name.
    Hope this helps.
    Regards,
    Bose
    Edited by: Bose on Mar 16, 2012 11:42 AM
    Edited by: Bose on Mar 16, 2012 5:35 PM

  • INS0009: Unable to connect to the database with user SYS

    Hi all,
    I'm trying to create an OWB repository with OWB repository assistant (10.2.0.2.) on a 10.2.0.1. database (windows XP platform). I get the following error every time I fill in the connect info for the SYS user:
    INS0009: Unable to connect to the database with user SYS. java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    I can connect to the database (sqlplus sys/<password>@orcl as sysdba) and the OS user is in the ora_dba group. Also checked the database parameters remote_login_passwordfile (= EXCLUSIVE) and O7_DICTIONARY_ACCESSIBILITY=TRUE.
    Does anyone know what the problem is? Any help is appreciated.
    Regards,
    Quinten

    Ok I found the problem myself, I used the wrong sys password :-(. I thought the password I used to logon in sqlplus was right (sqlplus sys/<password>@orcl as sysdba) but the password doesn't matter when you logon as sysdba! So I altered the password for the user sys and now I can continue the steps of the repository assistant.
    Quinten

  • UNABLE TO CONNECT TO THE DATABASE

    Problem Description:
    Unable to connect to the database:
    http://192.168.1.94:1158/dva/mac/login
    Login to Database:
    * User Name : dvowner
    * Password : XXXXXXXXXXX
    Login Error
    TNS:listener does not currently know of service requested in connect descriptor [12514].

    How does your inquiry related to Audit Vault?
    The 12514 error you are reporting is one of the most common and addressed at great length at metalink.

Maybe you are looking for