EA1 - Manage Database doesn't work

Environment:
Windows 2000
Connected to Oracle 10.2 or 9.2 (Using oracle spatial)
Right click on a connection and go Manage Database.
It brings up a tab with this text in the middle of it
Only Oracle connections are currently supported to display status.
Am I doing something wrong here?

You not doing anything wrong there's a bug logged on this.
-kris

Similar Messages

  • EA1 - PgDown, PgUp doesn't work in editors

    SQLDev version: 4.0.0.12, Windows XP
    Select some table -> right-click Open -> select "Data" tab -> pressing keys "Page Up", "Page Down" doesn't work.
    The same is with "Columns" tab (you can check if you have a table with a dozens of columns)
    A little different behaviour is on the "Constraints" tab: "Page Up", "Page Down" scrolls content only one row up or down.

    Bugged.
    Thanks for the report!

  • Extension Manager CC doesn't work with Photoshop v14

    When I try to add something to Photoshop the extension manager says it only works with Photoshop V13 . When is this going to be fixed?

    When I try to add something to Photoshop the extension manager says it only works with Photoshop V13 . When is this going to be fixed?

  • GT60 boots to Bigfoot boot manager, keyboard doesn't work

    I was attempting to install Ubuntu 13.10, and aborted the process to partition the 1TB HDD with a GParted Live CD. When I rebooted the computer to boot the GParted Live CD, the keyboard didn't work, and I was unable to do anything with the Live CD. I rebooted again, removed the Live CD, and found that the keyboard still doesn't work, and Windows 8 wont load. The MSI splash screen comes up, followed by something about Bigfoot Boot Agent, "press shift+F10 to configure", splash screen again, and then this:
    "Intel UNDI, PXE-2.0 (build 083)
    Copyright (C) 1997-2000  Intel Corporation
    Fort Bigfoot PCIE Ethernet Controller v2.1.1.1(02/09/12)
    Check cable connection!
    PXE-M0F: Exiting Intel PXE ROM.
    Rebot and Select proper Boot device
    or Insert Boot Media in selected Boot device and press a key_"
    Since the keyboard isn't working, I'm unable get to the BIOS(which is set to legacy and SecureBoot is disabled for booting non-Windows Live CD) and unable to "press a key", let alone press shift+F10 to configure Bigfoot Boot Agent. I can still boot the Live CDs I have, so I'm thinking of downloading one of the Live CDs from lifehacker's "Five Best System Rescue Discs" topic. Should I even bother, or should I just try to get it repaired by a professional?

    Quote from: darkhawk on 10-February-14, 12:31:42
    You're 12?.....
    No idea what happened though. Hard to say with the rather vague description thus far.
    "I am 12 and what is this?" is a somewhat aged meme. I apologize for the vague description; it was all I had to work with.

  • Extension Manager CC doesn't work

    I disabled all plugins for InDesign but it doesn't work.
    Regards
    Bartek
    P.S. Nice icon for Flash CC

    I disabled all plugins for InDesign but it doesn't work.
    Regards
    Bartek
    P.S. Nice icon for Flash CC

  • Manually Manage Podcasts doesn't work

    I set my songs to update automatically, and my podcasts are set to "Manually manage podcasts." However, when I try to drag a podcast to the iPod icon (or the iPod>Podcasts icon), the file just bounces back and doesn't get transferred. Can anyone help?
    Thanks.
    iMac 17" Intel   Mac OS X (10.4.6)   iPod with Video 30GB

    I'm trying to drag individual episodes, but to no avail.
    Incidentally, when I view the iPod's contents in iTunes, everything (podcasts and individual songs alike) appears grey, and are not clickable at all.

  • Enterprise Management Console doesn't work!

    Hi, there,
    I meet a strange problem. I use JDeveloper to make jsp project. the database is oracle 9i. I install JDeveloper and database on the same machine. at first, everything is ok. but suddenly I found that I can't run Enterprise Manager Console. the icon in the start meun became unrecognize. if I run the command on the command line, it's refused. I don't know what's the reason. but what's more strange is that I can run jsp project and store and retrieve data from database. I really don't know the reason, besides, how can I change database structure and view data stored in the database without Enterprise Manager Console?
    my project will be used on the next week, but I don't know if this problem will effect funcation!
    does there anyone know the reason and how can I resolve it? besides, my OS is windows xp professional.
    any hint will be great appreciated!!

    You can view your all values from Jdeveloper only .
    Go for connection Database and click on user than u can c database structure and all tables views ....
    Hope it helps

  • CR11R2: two Databases - doesn't work

    Hi!
    I've developed a CR-Viewer with .NET 2.0 and CR11 Release 2. The Viewer works fine with reports which have only one datasource (ODBC) with one database. But a few reports of us have one datasource with two databases.
    The first database-Name is IMS and the second fibgs.
    Our Viewer needs to update the Connection (ODBC-Name, Database-Name, DB-User and password) for each table.
    The info of table.LogOnInfo.ConnectionInfo.DatabaseName is always IMS and thats not correct. The tables/views which are in the database fibgs aren't available after the Datasource was updated.
    So my question is: How can I get the correct Database name of each table. (In Crystal Reports the correct name is shown).
    Thanks a lot!

    Hi!
    Thanks! But my problem is, to find out which table is part of which database. I've already have two datasources. Here my code, perhaps it is better to understand:
    foreach (CrystalDecisions.CrystalReports.Engine.Table tbl in cr.Database.Tables)
                li = tbl.LogOnInfo;
                string oldDbName = li.ConnectionInfo.DatabaseName.ToUpper();
                if (oldDbName.Length >= 2)
                    //Here is the problem => always IMS!!!
                    if (oldDbName.Substring(0, 3) == "IMS") 
                        // IMS-Table
                        try
                            li.ConnectionInfo = p_ImsCi;                       
                        catch (Exception ex)
                            MessageBox.Show("Fehler bei der Zuweisung der
    iMS-Verbindungsinformationen bei
    Tabelle " + tbl.Name + "." + Environment.NewLine + ex.Message);
                    else
                        // GYPSILON-Table
                        if (p_GypCi.DatabaseName != "" & p_GypCi.ServerName != "")
                            try
                                li.ConnectionInfo = p_GypCi;                           
                            catch (Exception ex)
                                MessageBox.Show("Fehler bei der Zuweisung der
    Gypsilon-Verbindungsinformationen
    bei Tabelle " + tbl.Name + "." + Environment.NewLine + ex.Message);
                        else
                            MessageBox.Show("Die Logon-Informationen für die
    FiBu-Datenbank sind unvollständig.",
    "iMS Report Viewer", MessageBoxButtons.OK, MessageBoxIcon.Information);
                            return false;
                    // Nun weisen wir li wieder der Tabelle zu
                    try { tbl.ApplyLogOnInfo(li); }
                    catch (Exception ex)
                        MessageBox.Show(tbl.Name.ToString() + " " +
    ex.Message + Environment.NewLine +
    "(ApplyLogOnInfo->" + tbl.Name + " )");
                else
                    // Alter Datenbankname hat weniger als 3 Zeichen -> FEHLER
                    MessageBox.Show("Die Logon-Informationen für folgende
    Datenbank sind unbekannt: '" + li.ConnectionInfo.DatabaseName +
    "' '" + li.ConnectionInfo.ServerName + "' '" +
    li.ConnectionInfo.Type + "'", "iMS Report Viewer",
    MessageBoxButtons.OK, MessageBoxIcon.Information);
                    return false;
                //check connectivity
                bool StatusConnectivity = false;
                try
                    StatusConnectivity = tbl.TestConnectivity();               
                catch (Exception ex)
                    MessageBox.Show("Fehler bei der Verbindungsprüfung." +
    Environment.NewLine +
    ex.Message + " -> " + tbl.Location + "(" +
    tbl.LogOnInfo.ConnectionInfo.DatabaseName + " " +
    tbl.LogOnInfo.ConnectionInfo.ServerName + ")" +
    Environment.NewLine);
    We've got about 300 reports and a couple of them have two databases in one ODBC-Connection.
    Any other idea? Thanks!!!

  • Oracle Enterprise Management Console doesn't work

    Hi, there,
    I meet a strange problem. I use JDeveloper to make jsp project. the database is oracle 9i. I install JDeveloper and database on the same machine. at first, everything is ok. but suddenly I found that I can't run Enterprise Manager Console. the icon in the start meun became unrecognize. if I run the command on the command line, it's refused. I don't know what's the reason. but what's more strange is that I can run jsp project and store and retrieve data from database. I really don't know the reason, besides, how can I change database structure and view data stored in the database without Enterprise Manager Console?
    my project will be used on the next week, but I don't know if this problem will effect funcation!
    does there anyone know the reason and how can I resolve it? besides, my OS is windows xp professional.
    any hint will be great appreciated!!

    You can view your all values from Jdeveloper only .
    Go for connection Database and click on user than u can c database structure and all tables views ....
    Hope it helps

  • "Manage" link doesn't work under Profile Account...

    Hey all, couldn't work out where to launch bug reports so this will have to do.
    Skype Version: 6.20.0.104
    Reproducing steps:
    Open skype and login
    Click your name in the top LHS
    Wait for "profile" screen to load
    Under "Accounts:" click the "manage" link
    Nothing happens

    I can confirm this issue. Please access your Skype web account page via the menu "Skype -> Account..." instead. I'll also make sure our product team is aware.
    Just tested again: Actually the "Manage" link below my Skype name in the "Accounts" section of the profile works for me. But the "Manage account" header further down is not clickable for me. Only the blue arroe to the right of that is. Still: If you have trouble accessing your account page, please access your Skype web account page via the menu "Skype -> Account...".
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • RV082 DNS Local Database doesn't work

    I recently upgraded the firmware to 2.0.2.01-tm (from 2.0.0.19-tm). Now I noticed the RV082's local DNS server ("DNS Local Database" feature) does not work any more. Any URL-IPaddr combo I used to put in there was resolved prior to sending a request to the WAN's primary/secondary DNS server.
    It isn't a PC problem. I tested on different real and virtual machines, windows and Linux. Is there new "enable" switch somwhere? Anyone, any ideas? Suppose I log into the RV082 with puTTY, what can or should I do?

    You can try a factory reset and reload the configuration but the above step i suggested if it didn't work then next suggestion would to be factory reset and reconfigure manually and then test.
    So yes you can try that first then try what i suggested and if that don't work then it will be next step
    Factory reset and reconfigure manually.. Some times when upgrading it can cause some corrupted files and only way to fix is a factory reset and reconfigure (manually)..
    Jasbryan

  • List Manager - next doesn't work

    Hi,
    I have added list manager in my form. For some reason, search works but not the 'next' button. Please advice. Thanks,
    Lakshmi

    Lakshmi - 1) Describe every attribute of the item and show the LOV query, 2) put your application on a publicly accessible site so others can inspect it. FYI, I have no trouble with a list manager item in 1.6.1.
    Scott

  • [Solved]update-desktop-database doesn't work

    The output is:
    Warning in file "/usr/share/applications/epiphany.desktop": usage of MIME type "multipart/related" is discouraged ("multipart" is a media type that probably does not make sense in this context)
    The databases in [/usr/local/share/applications, /usr/share/applications] could not be updated.
    Can anyone help?
    Last edited by qq1693129601 (2015-01-14 04:37:39)

    toz wrote:You need the proper rights to modify the files in /usr/share/applications.
    Thank you, solved.

  • IMPORT FROM DATABASE doesn't work in Web Dynpro

    Hi all, I want to use the code at the bottom to get the last packages visited by a user I specify.
    But I'm getting this error:
    IMPORT var_1 ... var_N FROM DATABASE is not supported in the OO
    context. Use IMPORT name_1 TO var_1 ... name_n TO var_n FROM DATABASE
    ... instead. var_n DATABSE ... insted var_n FROM DATABASE.
    Could someone please show me how I can resolve this?
      TYPES : BEGIN OF ty_key,
                uname  TYPE euf4values-uname,
                object TYPE euf4values-object,
              END OF ty_key.
      TYPES : BEGIN OF ty_value_table,   " Last F4 Values
                obj_name    TYPE tadir-obj_name,
                encl_object TYPE tadir-obj_name,
                position    TYPE i,
              END OF ty_value_table.
      DATA : gs_key TYPE ty_key,
             f4_last_values TYPE TABLE OF ty_value_table,
             gs_value_table TYPE ty_value_table.
      gs_key-uname  = item_user.
      gs_key-object = 'K'.
      IMPORT f4_last_values FROM DATABASE euf4values(eu) ID gs_key.

    Did you check the online documentation ? [http://help.sap.com/abapdocu_70/en/ABAPIMPORT_MEDIUM.htm#&ABAP_ALTERNATIVE_4@4@]
    I see your code has differences from the example provided in the standard documentation.

  • SOA fault management framework doesn't work

    The following is my fault-policies.xml and fault-binding.xml. Both are located in the same folder as the composite.xml. I simulated a remote fault. The fault was not caught by the framework.
    I even re-started both admin server and soa managed server.
    I am using SOA 11.1.1.5
    1. fault-binding.xml:
    <?xml version="1.0" encoding="UTF-8" ?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchemainstance">
    <composite faultPolicy="POProcessingFaults"/>
    </faultPolicyBindings>
    2. fault-policies.xml
    <?xml version="1.0" encoding="UTF-8" ?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <faultPolicy version="2.0.1"
    id="POProcessingFaults"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/ XMLSchema-instance">
    <Conditions>
    <!-- Step #1: Add your fault handler for remote fault here: -->
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension" name="bpelx:remoteFault">
    <condition>
    <action ref="ora-human-intervention"/>
    </condition>
    </faultName>
    <!-- Step #2: Add your fault handler for binding fault here: -->
    <!-- Step #3: Add your fault handler for mediator faults here: -->
    </Conditions>
    <Actions>
    <!-- Step #4: Add the Action definition for handling mediator faults using custom java here:-->
    <!-- Custom Java Handler: Logs the fault details to a log file -->
    <Action id="my-java-handler">
    <javaAction className="soatraining.faulthandling.MyFaultHandler"
    defaultAction="ora-terminate" propertySet="myProps">
    <returnValue value="OK" ref="ora-rethrow-fault"/>
    </javaAction>
    </Action>
    <!-- Retry -->
    <Action id="ora-retry">
    <retry>
    <retryCount>4</retryCount>
    <retryInterval>2</retryInterval>
    <exponentialBackoff/>
    </retry>
    </Action>
    <!-- Rethrow action -->
    <Action id="ora-rethrow-fault">
    <rethrowFault/>
    </Action>
    <!-- Human Intervention -->
    <Action id="ora-human-intervention">
    <humanIntervention/>
    </Action>
    <!-- Terminate -->
    <Action id="ora-terminate">
    <abort/>
    </Action>
    </Actions>
    <!-- Property sets used by custom Java actions -->
    <Properties>
    <!-- Property set for MyFaultHandler customer java action -->
    <propertySet name="myProps">
    <property name="logFileName">myfaulthandler.log</property>
    <property name="logFileDir">c:\temp</property>
    </propertySet>
    <!-- Step #5: Add new property set for MyFaultHandler for logging Mediator faults here:-->
    </Properties>
    </faultPolicy>
    </faultPolicies>

    Please use the below files and let me know...
    fault-policies.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicies xmlns="http://schemas.oracle.com/bpel/faultpolicy">
    <faultPolicy version="2.0.1" id="bpelFaultHandling"
    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Conditions>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:bindingFault">
    <condition>
    <action ref="ora-retry"/>
    </condition>
    </faultName>
    <faultName xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    name="bpelx:remoteFault">
    <condition>
    <action ref="ora-retry"/>
    </condition>
    </faultName>
    </Conditions>
    <Actions>
    <Action id = "ora-rethrow-fault">
    <rethrowFault/>
    </Action>
    <Action id = "ora-retry">
    <retry>
    <retryCount>5</retryCount>
    <retryInterval>1</retryInterval>
    <exponentialBackoff/>
    <retryFailureAction ref = "ora-rethrow-fault"/>
    </retry>
    </Action>
    </Actions>
    </faultPolicy>
    </faultPolicies>
    fault-bindings.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <faultPolicyBindings version="2.0.1"
    xmlns="http://schemas.oracle.com/bpel/faultpolicy"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <composite faultPolicy="bpelFaultHandling"/>
    </faultPolicyBindings>
    Write two composites A and B . A is Asynchronous and B is Synchronous. Call B from A, just throw a remotefault from B; put the above two files in composite A in the folder where the composite.xml file resides.And also keep a catchALL block at the BPEL process level for the composite A. So when you execute A, The fault policies will come into play, try the same invoke for five times and rethrow the fault which will be caught by catchALL block in composite A and do something from A, either invoke back the caller or write some error message to the file or email or something else.
    Hope this helps...
    Thanks,
    N

Maybe you are looking for