Connect to APEX /w SQL Developer

Hi everyone,
i've just created a free apex schema on apex.oracle.com.
Can i connect to this database with my local SQL Developer somehow?

Jari's right. Also see the following for more information;
Connect apex.oracle.com workspace schema using a developer tool
Kofi

Similar Messages

  • Cann't connect to apex from sql developer

    Platform: win8.
    XE and SQL Dev work properly.
    Connecting under XE database user "system" (it doesn't matter, the result will be the same).
    Trying to connect to "localhost-1521-xe" I get
    Status : Failure -Test failed: ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: Cannot access NLS data files or invalid environment specified
    Trying to connect to "local/bequeath" I get
    Status : Failure -Test failed: C:\oraclexe\app\oracle\product\11.2.0\server\bin\ocijdbc11.dll: Can't load IA 32-bit .dll on a AMD 64-bit platform

    Jari's right. Also see the following for more information;
    Connect apex.oracle.com workspace schema using a developer tool
    Kofi

  • Administration of APEX in SQL Developer with Proxy Authentication impossibl

    Hello!
    We are using latest version of SQL Developer to administer APEX. We are connecting to the database with proxy authentication. The syntax is:
    personal_user[apex_ws_owner]
    e.g.: mdecker[apex_demo]
    When trying to deploy APEX application I go to "Database Object" -> Application Express -> Application1 [100] -> right mouse click: "Deploy Application". Then I select the appropriate database identifier and next, I am presented with a screen showing import options. In second line, it says: "Parsing Schema: MDECKER".
    This is wrong: it has to be Parsing Schema: APEX_DEMO. It seems that managing APEX with SQL Developer does not support Proxy Authentication.
    Could you please confirm?
    Is there a way to formally ask for this enhancement?
    Best regards,
    Martin
    Update:
    I found out that if I check the flag "Proxy Authentication" in the connect details and provide both passwords, the deploy application parsing schema is set to the correct APEX_DEMO account. However, we are using Proxy Authentication in order to avoid having to know the application password.
    Edited by: mdecker on Jan 28, 2013 4:48 PM

    There is a write-up about connecting to APEX here: <a href ="http://www.oracle.com/technology/products/database/application_express/html/sql_dev_integration.html" >SQL Dev Oracle APEX Integration</a>
    <p>You do need to have updated to Oracle APEX 3.0.1.
    <p>Regards <br>
    Sue

  • APEX or SQL Developer?

    Hello,
    This is my first time posting here, I hope I have put it in the right section.
    I was told that in order to have SPARQL with Oracle, I should use either APEX or SQL Developer, and not to install Oracle Enterprise. (I have never worked with it, and am a bit lost).
    Is it possible to write SPARQL queries in this manner? Which is recommended for a beginner that only knows basics of SQL? Which has a more user-friendly interface?
    I would very much appreciate the help.
    Thank you :)
    Edited by: user13098869 on 14-Nov-2010 02:39

    Hi
    APEX - Oracle Application Express is a no-cost option of the Oracle database.
    SQL Developer is a tool that connects to the database to execute queries and PLSQL code
    I do not know how APEX or SQL Developer would work with SPARQL.
    One way to work with SPARQL with Oracle is using the Jena Adaptor. This is a set of tasks you would need to perform:
    1. Install Oracle Database Enterprise Edition
    2. Configure the database to use Semantic Technologies
    3. Install JDK
    4. Install Jena
    5. Install Jena Adaptor
    6. Review Jena Adaptor Demos that include SPARQL examples
    Jena Adaptor Tutorial:
    http://download.oracle.com/otndocs/tech/semantic_web/pdf/semtech11gr2_jenaadapt-tl.pdf
    From Test8.java on you can see some SPARQL examples
    This is the Oracle Semantic Technologies Web Page:
    http://www.oracle.com/technetwork/database/options/semantic-tech/index.html
    This is my scratch pad that I used when doing these tasks in case it helps:
    1. Install 11.2.0.2.0
    and
    2. Create database at time of installation.
    3. Create tablespace for Semantics:
    create tablespace RDF_TABLESPACE
    datafile '/.../rdf01.dbf' size 2000M
    autoextend on next 2000M maxsize 16000M;
    4. Setup Semantic Technologies:
    sqlplus / as sysdba
    @?/md/admin/catsem
    exec sem_apis.create_sem_network('RDF_TABLESPACE');
    5. Place files in working directory:
    JDK: jdk-6u22-linux-x64.bin
    Jena: jena-2.6.3.zip
    Jena Adaptor ./JenaAdaptor/jena_adaptor_for_release11.2.zip
    6. Unzip files:
    unzip jena-2.6.3.zip
    cd JenaAdaptor
    unzip jena_adaptor_for_release11.2.zip
    7. Install JDK:
    chmod u+x jdk-6u22-linux-x64.bin
    ./jdk-6u22-linux-x64.bin
    answer: yes
    8. You should have in your working directory:
    Wdir> ls -l
    total 70388
    drwxr-xr-x 8 ... Jena-2.6.2/
    drwxr-xr-x 7 ... JenaAdaptor/
    -rwxr--r-- 1 ... jdk-1_5_0_21-linux-i586.bin*
    drwxr-xr-x 9 ... jdk1.5.0_21/
    -rw-r--r-- 1 ... jena-2.6.2.zip
    9. Copy files:
    a. Copy ojdbc5.jar into <Jena_DIR>/lib (Linux) or <Jena_DIR>\lib (Windows). (ojdbc5.jar is in
    $ORACLE_HOME/jdbc/lib or %ORACLE_HOME%\jdbc\lib.)
    cp $ORACLE_HOME/jdbc/lib/ojdbc5.jar .../Jena-2.6.2/lib
    b. Copy sdordf.jar into <Jena_DIR>/lib (Linux) or <Jena_DIR>\lib (Windows). (sdordf.jar is in
    $ORACLE_HOME/md/jlib or %ORACLE_HOME%\md\jlib.)
    cp $ORACLE_HOME/md/jlib/sdordf.jar .../Jena-2.6.2/lib
    c. Copy sdordfclient.jar. It is in Work_dir/JenaAdpator/jar
    cp .../JenaAdaptor/jar/sdordfclient.jar .../user/Jena-2.6.2/lib
    10. Environmental variables:
    export JAVA_HOME=.../user/jdk1.5.0_21/bin
    export PATH=.../user/jdk1.5.0_21/bin:$PATH
    11. To compile the examples:
    copy the *.java examples to JENA_DIR/lib
    cp .../user/JenaAdaptor/examples/*.java .../user/Jena-2.6.2/lib
    -- To compile:
    cd .../user/Jena-2.6.2/lib
    javac -classpath ./:./jena-2.6.2.jar:./sdordfclient.jar:./ojdbc5.jar:slf4j-api-1.5.6.jar:log4j-
    1.2.13.jar:slf4j-log4j12-1.5.6.jar:arq-2.8.1.jar:xercesImpl-2.7.1.jar Test.java
    -- To run:
    cd .../user/JenaAdaptor/examples
    java -classpath ./:./jena-2.6.2.jar:./sdordfclient.jar:./ojdbc5.jar:slf4j-api-1.5.6.jar:log4j-
    1.2.13.jar:slf4j-log4j12-1.5.6.jar:arq-2.8.1.jar:xercesImpl-2.7.1.jar:iri-0.7.jar:icu4j-3.4.4.jar
    Test jdbc:oracle:thin:@caosspc46.ca.oracle.com:1521:orcl1102 rdfusr rdfusr Family
    You should see:
    | f | k |
    =========================================================
    | <http://example.com/John> | <http://example.com/Mary> |
    Regards!
    Jorge

  • "peer not authenticated" - Connecting to ORDS with SQL Developer

    Background
    Configuring ORDS (2.0.7) to my database, with APEX_LISTENER and APEX_REST_PUBLIC_USER created via APEX 4.2.2 script.
    Listener is running as expected - and APEX works as expected.
    ORDS credential setup (as made evident by the credentials file with the user name inside)
    Addition of the line to the ords/default.xml:  <entry key="security.verifySSL">false</entry>
    To allow connection without using SSL.
    Current Status
    I am able to connect using SQL Developer "Restful Data Services" feature using the "HTTP" connection and the credentials that have been setup successfully.
    Problem
    Attempting to configure a SQL Developer (4.0.2.15) connection using the same account, but HTTPS with 443 - the connection results in the error message:
    Authentication Failure
    Cannot connect to S42
    peer not authenticated
    Additional
    I am using an installation of Tomcat and a version of Glassfish to test this feature.  I have received the same error on both test cases.
    I have also tested by removing the <entry key="security.verifySSL">false</entry>
    Is there a specific type of HTTPS certificate that is required to connect using HTTPS? 
    Did I miss a different setting?
    Regards,
    Tim St.

    Got this working, needed a change to the config file on weblogic server by our DBA.

  • Remote debugging with APEX and SQL Developer

    Hi,
    I have problems concerning breakpoints within my SQL Packages I want to debug.
    I want to force SQL-Developer to suspend execution of a function, so I can get forward step by step.
    The SQL-Developer do not stop executing at the breakpoints I set in the Package.
    The message I get is the following (on SQL-Developer side):
    Debugger accepted connection from remote process on port 4000.
    Processing 110 classes that have already been prepared...
    Finished processing prepared classes.
    Debugger disconnected from remote process.
    Seems to me, that the process runs into the debug-mode but leave without stopping at a given breakpoint??
    Do anybody have an idea how to solve it?
    We use Oracle 10.2.0.3.0, SQL Developer 1.5.1 and APEX 3.1.2.
    The Package-function I want to debug runs on another Oracle database as the APEX application.
    Thanks in advance
    Regards
    Norbert
    Edited by: Norbert2 on Apr 20, 2009 5:47 AM

    Hi Carsten,
    now I have done a further step. I can debug a remote PL/SQL-Package through APEX, but now I get an exception when the program execution jumps back to the APEX PL/SQL-Package.
    My APEX-Page-Process looks like this:
    BEGIN
      dbms_debug_jdwp.connect_tcp(host => 'IP-ADDRESS', port => '4201');
      APEX_TEST_PKG.remoteDebug;
      dbms_debug_jdwp.disconnect;
    END;The procedure APEX_TEST_PKG.remoteDebug looks like this (located on the APEX-DB):
    PROCEDURE startRemoteDebug
      AS 
        v_string    VARCHAR2(50)   := '';
      BEGIN
        [email protected](host => 'IP-ADDRESS', port => '4000',
                 option_flags => dbms_debug_jdwp.connect_defer_suspension);
        v_string := [email protected];
        DBMS_OUTPUT.PUT_LINE(v_string);
        [email protected];
      END remoteDebug; The procedure REMOTE_TEST_PKG.testFunc looks like this (located on the Remote-DB):
    FUNCTION testFunc RETURN VARCHAR2
      AS 
        v_string    VARCHAR2(50)   := '';
      BEGIN        
        v_string := 'Test';
      RETURN v_string;
    END testFunc; When I start the debug session without the option dbms_debug_jdwp.connect_defer_suspension, I get an exception Oracle.EXCEPTION_ORA_604.
    Starting the debug session with the above mentioned option, I am able to debug the remote function.
    But now I get an exception when the executor tries leaving the remote function going back to the invoking function. With the debugger I can step over the return-statment successfully and the debugger steps on the next line END testFunc;. On this line I get the exception above
    Exception breakpoint occurred at line -1 of PBREAK.pls.
    $Oracle.Builtin.EXCEPTION_USER:
    Exception breakpoint occurred at line -1 of PBREAK.pls.
    $Oracle.Builtin.EXCEPTION_USER: I tried another way where I get now exception and where I can step through my functions in APEX, descending to functions in the remote db and going back to APEX.
    For this case I put the debug-statements in remote function:
    FUNCTION testFunc RETURN VARCHAR2
      AS 
        v_string    VARCHAR2(50)   := '';
      BEGIN        
        dbms_debug_jdwp.connect_tcp(host => 'IP-ADDRESS', port => '4000');
        v_string := 'Test';
        dbms_debug_jdwp.disconnect;  
      RETURN v_string;
    END testFunc; But I have no idea why it doesn't work properly starting the remote debug session in the apex procedure.
    Regards
    Michael
    Edited by: user6044915 on 02.09.2009 04:08
    Edited by: user6044915 on 02.09.2009 04:21
    Edited by: user6044915 on 02.09.2009 04:28

  • Cannot connect to apexlistener via SQL developer.

    I cannot connect via SQL developer to my installed apexlistener (2.0.1) installed on Glassfish (3.1.2) webserver.
    In the server.log from this domain i always see following error messages;
    [#|2013-04-24T10:49:25.199+0200|SEVERE|glassfish3.1.2|null|_ThreadID=453;_ThreadName=Thread-2;|No pool found for: http://servername:8080/apex/oauth2/token|#]
    [#|2013-04-24T10:49:25.199+0200|INFO|glassfish3.1.2|null|_ThreadID=453;_ThreadName=Thread-2;|No DB connection found for: /apex/oauth2/token|#]
    [#|2013-04-24T10:49:25.206+0200|SEVERE|glassfish3.1.2|null|_ThreadID=453;_ThreadName=Thread-2;|The pool named: apex_al does not exist|#]
    Help appreciated...
    Regards,
    Ton

    Turned debug on in defaults.xml;
    [#|2013-04-24T12:19:47.840+0200|SEVERE|glassfish3.1.2|null|_ThreadID=453;_ThreadName=Thread-2;|No pool found for: http://.......:8080/apex/oauth2/token|#]
    [#|2013-04-24T12:19:47.840+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Could not find any database pool to use for this request|#]
    [#|2013-04-24T12:19:47.841+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Applied database connection info|#]
    [#|2013-04-24T12:19:47.841+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Attempting to process with PL/SQL Gateway|#]
    [#|2013-04-24T12:19:47.842+0200|INFO|glassfish3.1.2|null|_ThreadID=453;_ThreadName=Thread-2;|No DB connection found for: /apex/oauth2/token|#]
    [#|2013-04-24T12:19:47.844+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Not processed as PL/SQL Gateway request|#]
    [#|2013-04-24T12:19:47.844+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Attempting to process as a RESTful Service|#]
    [#|2013-04-24T12:19:47.863+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Default Database connection does not exist|#]
    [#|2013-04-24T12:19:47.952+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Choosing: oracle.dbtools.rt.oauth.TokenHandler as current candidate with score: Score [handle=null, score=0, scope=SecurityConfig [constraint=secure, realm=OAUTH_CLIENT, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true]|#]
    [#|2013-04-24T12:19:47.954+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Determining if request can be dispatched as a Tenanted RESTful Service|#]
    [#|2013-04-24T12:19:47.954+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Request path has one path segment, continuing processing|#]
    [#|2013-04-24T12:19:47.955+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|No JDBC Principal established, cannot dispatch|#]
    [#|2013-04-24T12:19:47.956+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|Chose oracle.dbtools.rt.oauth.TokenHandler as the final candidate with score: Score [handle=null, score=0, scope=SecurityConfig [constraint=secure, realm=OAUTH_CLIENT, logonConfig=LogonConfig [logonForm=null, logonFailed=null]], originsAllowed=[], corsEnabled=true] for: POST oauth2/token|#]
    [#|2013-04-24T12:19:47.960+0200|SEVERE|glassfish3.1.2|null|_ThreadID=453;_ThreadName=Thread-2;|The pool named: apex_al does not exist|#]
    [#|2013-04-24T12:19:47.965+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|oauth2/token authorized as: IsZv_-R511-vq79m880SQA..|#]
    [#|2013-04-24T12:19:47.965+0200|INFO|glassfish3.1.2|javax.enterprise.system.std.com.sun.enterprise.server.logging|_ThreadID=453;_ThreadName=Thread-2;|must be accessed over https only|#]

  • I am not able to connect to database in sql developer.how to do?

    I downloaded sqldeveloper 1.5.4.59.40. iam not able to establish connection to database. Can anyone tell me ?

    Have you created a database (or have one you connect to)?
    Have you created the Net Service connections for SQL Developer to use?
    Does SQL Developer have access to this Net Serviice name?
    Have you created the connections from SQL Developer?
    Can you post an error message?
    See
    <br>
    Oracle Database FAQs
    </br>

  • Issue in connection with database using SQL Developer.

    Hi,
    I am facing a problem in connecting to a remote oracle database, below are the configuration setting which i am trying to use in sql developer to make the connection
    TNS Configuration Details (SUDHIR)
    SUDHIR=
    (DESCRIPTION=
    (ADDRESS=
    (PROTOCOL=TCP)
    (HOST=52.12.xxx.xxx)
    (PORT=1526)
    (CONNECT_DATA=
    (SERVICE_NAME=sudhir)
    User : system
    Password : xxxxxxxxxxx
    Database : sudhir
    Connect as : Normal
    I got the above credential details from Onsite team I need to connect this in my local sytem SQL Developer I am proving the connection as below
    Hostname : 52.12.xxx.xxx
    Port : 1526
    Service Name : sudhir
    Username : xxxxxxxxxxxxxx
    password : xxxxxxxxxxxxx
    I get following error when say test connection in sql developer.
    "The Network Adapter could not establish the connection."
    Please suggest me using the above details how to make the connection success. Please let me know.
    Thanks
    Sudhir
    Edited by: BluShadow on 30-Mar-2012 11:56
    data anonymised by moderator

    (o_0)
    Hopefully for you, the machine is not reachable from internet !
    Your giving online everything needed to log in as system ! that is quite dangerous. I guess the "Onsite team" would be pretty mad discovering that.
    You should edit your previous post before too much people get to it.
    Regarding your problem, I guess you can't get to the machine itself (maybe in a different network).
    Can you try to ping it from your computer ?ping 51.17.130.121
    This is a made-up IP, you'll have to replace with yours

  • Cannot connect to Database in SQL Developer - TIMEZONE errors

    Cannot connect to any database get the following errors.
    Status : Failure -Test failed: ORA-00604: error occurred at recursive SQL level 1
    ORA-01882: timezone region not found
    Tried change NLS settings to America (currently South Africa) but to no avail.
    My system info:
    About
    Oracle SQL Developer 3.2.20.09
    Version 3.2.20.09
    Build MAIN-09.87
    Copyright © 2005, 2012 Oracle. All Rights Reserved.
    IDE Version: 11.1.1.4.37.59.48
    Product ID: oracle.sqldeveloper
    Product Version: 11.2.0.09.87
    Version
    Component     Version
    =========     =======
    Java(TM) Platform     1.6.0_38
    Oracle IDE     3.2.20.09.87
    Versioning Support     3.2.20.09.87
    Running on Windows 7 with a 64-bit oracle client.

    I managed to find the solution in previous thread
    Please see my error message.

  • Publish to APEX in SQL Developer

    Hello:
    I wrote a query in SQL Developer and I want to utilize the Publish to APEX feature.
    In SQL Developer, I right-click and select Publish to APEX.
    I select the workspace, enter an application, select a theme, and enter a page.
    I receive a message stating that it was successful.
    I then go to APEX and login in as myself into my workspace which is the same workspace I designated in SQL Developer for this publish.
    At the login, I enter my username and password.
    I go to Application Builder, select the new application that was published, click Run.
    I'm prompted for a login, so I enter my username and password and I receive Invalid Login Credentials.
    Does anyone know what is causing this issue? I am the developer. I am an administrator. I'm using the same logins I always do when working with APEX. I'm not sure why I'm receiving this message.
    Can someone help me?
    Thanks.

    I don't think Apex is set up to accept this, but as the previous post says once you have the username/password of the underlying Oracle schema you should be able to do this. My particular case was jDeveloper and offline database objects, but the principle is the same. If you have admin access to the database go in as sys and change the password of the underlying Oracle user.

  • Connection login/password in SQL Developer

    I had install the Database App Development VM Appliance but i can not create a connection in SQL Developer.
    I tried the following user/password :
    sys/oracle
    sys/sys
    hr/oracle
    oracle/oracle
    With hr/oracle i could connect in Oracle Enterprise Manager (not as SYSDBA), but could not create a connection in SQL Developer.
    The only instructions I found about it was in the terminal message:
    "All passwords are oracle or noted if otherwise."
    How can I connect to database as SYSDBA?
    Thanks

    i used...
    sys/oracle
    connection type: basic
    role: sysdba
    hostname: localhost.localdomain
    port: 1521
    sid: orcl
    wouldn't it have made sense if the VM had these settings saved in it when it was loaded?

  • All connections are lost in SQL Developer 1.5

    Windows XP - SP2
    Install Oracle Developer 1.5 today on my XP box. I don't have any old version of Oracle Developer installed before.
    I created some connections and able to do some query against some database. Then, I close Oracle SQL Developer. When I relaunch it again, I found all the connections I have created are lost. When I try to recreate any connection, it failed and I see lots of java error by view "Logging Page - Log" tab. Not sure, how to copy and paste those log information.
    Since I can't create any connections, I can't use SQL Developer 1.5 anymore. I have to reinstall it again.
    Can anyone help?
    Thanks!
    Kevin

    I have posted an announcement with the workaround for this problem, but I'll go ahead and duplicate them here :)
    We have identified an issue with loading connections in SQL Developer 1.5. The symptoms of the problem are a failure to load previously defined connections in the Connections navigator coupled with errors displayed in the Logging Page related to severe problems initializing the JNDI context.
    There are two known workarounds to this issue. The first is to install and use JDK 6.0 update 6 (or later). This may require removing the jdk directory from the SQL Developer install and/or editing the sqldeveloper.conf file to remove any references to a Java Home.
    The second workaround is to modify the sqldeveloper.conf file to add some libraries to the classpath. These libraries are currently being added to the classpath by one or more extensions; however, adding them to the sqldeveloper.conf file will ensure they get added in the correct order. Add the following lines:
    AddJavaLibFile ../../lib/java/api/jaxb-api.jar
    AddJavaLibFile ../../lib/java/api/jsr173_api.jar
    AddJavaLibFile ../../j2ee/home/lib/activation.jar
    AddJavaLibFile ../../lib/java/shared/sun.jaxb/2.0/jaxb-xjc.jar
    AddJavaLibFile ../../lib/java/shared/sun.jaxb/2.0/jaxb-impl.jar
    AddJavaLibFile ../../lib/java/shared/sun.jaxb/2.0/jaxb1-impl.jar
    - John
    SQL Developer Team

  • Problem in connecting Database by using SQL Developer

    Hi,
    I recently installed SQL Developer after installing Oracle 10g and am trying to connect existing database. could anybody help me to connect and what credential should i required to connect.
    Thanks in advance
    LN Reddy

    I am new to oracle myself, so I apologize if this information is not helpful. But I have a number of connections to a local database on my laptop. The way that I connected is using the 'Basic' tab with the following settings:
    Hostname: localhost
    Port: 1521
    SID: orcl
    And of course the username above.
    I hope that might be helpful.

  • Error: connecting to db with SQL Developer

    Hi,
    I have just done a test disaster recovery (complete restore and recovery) of my database. I have successfully restored and recovered my database and managed to open the database , though with a few warnings shown below
    RMAN> alter database open resetlogs;
    database opened
    RMAN-06900: WARNING: unable to generate V$RMAN_STATUS or V$RMAN_OUTPUT row
    RMAN-06901: WARNING: disabling update of the V$RMAN_STATUS and V$RMAN_OUTPUT row
    s
    ORACLE error from target database:
    ORA-06553: PLS-801: internal error [56319]
    When I try to use sql developer to access the database. I end up getting the following error:
    ORA-06544: PL/SQL:internal error, arguments: [56319], [], [], [], [], [], [], []
    ORA-06553: PLS-801: internal error [56319]
    06544. 00000 - "PL/SQL: internal error, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]"
    *Cause: A pl/SQL internal error occurred.
    *Action: Report as a bug; the first argument is the internal error number.
    vendor code 6544
    This has been the first time I performed full recovery.
    I am using sqldeveloper 1.1 and running oracle 10g R2
    I was wondering if anybody has come across this problem before
    Any help would be appreciated

    Sorry, I meant that "restore database" and "recover database" commands both completed successfully without errors<br><br>
    I had a try connecting with sql *plus, which I get <br><br>
    ORA-06553:PLS-801 internal error.<br><br>
    <i>HOWEVER</i>, I still get connected, and can run queries against the tables<br><br>
    You'd get better response from the Recovery Manager forum...<br>Sorry you are right,

Maybe you are looking for

  • How to install Adobe printer's 'postscript driver' in mac os x

    hello again, as posted recently hv a problem with adobe printer's postscript driver (ppd),In Indesign cs4 It shows ppd is missing while making Print File(.ps), pls suggest how to install ppd again, i tried to install ppd driver downloaded from adobe

  • Adobe Photoshop Album 2.0 Starter Edition

    I have a slide show made up. Can I make a new one up without loosing the first one?

  • Calling a function that's inside another function

    function test1():void      function test2():void {..} How do I call test2 function (outside test1 function)? Is it possible?

  • Can't eject Install DVD (Tiger)

    While attempting (unsuccessfully) to install OSX 10.4 I can't remove the disk! When moving the icon to the "trash" , I get an "unexpected error" msg. (code =-36). Using the eject button accomplishes nothing. Even turning off and restart doesn't help.

  • FF68 problem

    Hello, Can anyone help me on FF68. I have posted down payment from customer in TC: F-29 for USD 1,000. We have raised an invoice for USD 5,000 against this customer sends remain payment for USD4,000 via check. Now when we enter FF68 we are able to gi