Dbconsole has wrong listener listed

We switched from a listener named LISTENER10G to LISTENER, but my dbconsole still reflects LISTENER10G which no longer exists. Can anyone help me correct this?

try using the emca config utility to reconfigure.
emca -config dbcontrol db

Similar Messages

  • Setting up a new developer account has wrong name listed in personal information with no option to edit

    In the process of setting up a new developer account, getting to step #2 & reviewing the personal information, the first & last name listed for my Apple ID is incorrect, however it is correct on the Apple ID settings page, as well as all of my iTunes billing information. How can this be updated? I don't want to create a developer account and be listed with the wrong name!

    Please read before you post.
    Contact [email protected] to investigate signup issues.

  • Initialization error : class file has wrong version 49.0, should be 45.3 or

    I have Jdeveloper Base installation and JDK 1.5..the classpath and JAVA_HOME environment variables are set to the respective JDK1.5\bin folders. Even then when i try to make a web application, with a simple JSP page i get the following error :
    Initialization error: class file has wrong version 49.0, should be 45.3 or 46.0 or 47.0 or 48.0 on CLASSPATH ..(followed by a long list of paths)
    pls help,
    thanks

    i have windows XP. i have tried to unset the class path...i get the same error.
    i have JDeveloper 10g 10.1.2.
    i have changed the jdev.conf file to set the Java Home to the path that contains the JDK 1.5..

  • Photos remain in wrong iPhoto list even after being moved?

    +Mike G.+
    +Posts: 297+
    +Registered: 15-Nov-2004+
    + Photos remain in wrong iPhoto list even after being moved?+
    +Posted: 29-Jan-2009 16:56 +
    Hi,
    +Has anyone else had this problem? Any workarounds?+
    +I have a number of pictures that just show up in the wrong place in Places' list view, but I cannot seem to move them. For example, a photo will show up as being in state X in city Y when it was actually taken at a "Place" in state A, city B. So I click on the photo, hit command-i, type in the name of a place in A/B, and hit done. (Pressing command-i again shows the new name and a pin in the correct place.) However, the photo still shows up when I select state X and city Y from the places browser. This persists even after restarting iPhoto.+
    +Any ideas?+
    +iMac (Mid-2007) Mac OS X (10.5.6)+
    +Mike G.+
    +Posts: 297+
    +Registered: 15-Nov-2004+
    + Re: Photos remain in wrong iPhoto list even after being moved?+
    +Posted: 16-Sep-2009 16:30 in response to: Mike G. +
    +Does not seem to be an issue with the latest version of iPhoto.+
    Im not sure why this has been closed as it is an issue for me as well,
    eg, Trafalgar Square photos appear in the London Eye pushpin, but when checking the photos individually they are correct.
    I am fully up to date with my software and this issue only appears to have raised itself on the latest version of iphoto (8.1 (415))
    Removing the locations and re-adding them does not fix the issue you just end up with the same result or a different mixture of incorrect pictures in the push pins.
    Message was edited by: Carn

    The best way to get assistance on the forum is to provide a clear and detailed description of the problem and report any steps you've already taken to solve the issue and anything that resulted therefrom.
    Im not sure why this has been closed as it is an issue for me as well,
    It's been closed because the User who had this issue found a solution. Only the person who creates the thread can close it. This person had no idea you even existed, let alone that you might have a similar issue. I'm sure if he had he'd have left it open, just waiting for you to come along.
    Is not a resolving answer to the issue and appears to be a very narrow minded approach to resolving issues!
    Let's see. Someone has an issue. They create a thread on the forum. They find a solution. They mark the thread as answered. This is narrow minded?
    Regards
    TD

  • How to get the list of users who has access for list of tcodes.

    How to get the list of users who has access for list of tcodes.

    Go to transaction SUIM, this has a number of reports for users/authorisations
    open the Where used>Autorization Values>In Users
    and double click to execute
    in authorisation object, enter S_TCODE
    then press the "Enter Values" button
    It will offer entry boxes to put the transaction code you are interesed in.
    Then execute and the list of users with access to this transaciton code will be returned.

  • HTMLDB_APPLICATION.G_F01 has wrong value!

    HTMLDB_APPLICATION.G_F01 has wrong value!
    Hello again,
    I have a search page in my app (here the user defines the search criteria) P1.
    The page branches to P130, where the result is shown. This second page contains a region of type 'SQL Query (PL/SQL Function Body Returning SQL Query)'. The code for this dynamic query is 231 lines of code, so I want to spare you scrolling through it here . What it basically does is generating SQL QRY's such as the following:
    select     distinct(sq.SAMPLE_ID) XXX,
    'ID: '||sq.SAMPLE_ID||'
    ' ||'Type: '||sq.SAMPLE_TYPE||'
    ' ||'Collection Date: '||sq.COLLECTION_DATE SAMPLE_INFO,
    'Aliquots (T/A): '||to_char(sq.ALIQUOTS_TOTAL)|| '/' ||to_char(sq.ALIQUOTS_AVAILABLE)||'
    ' ||'Volume (T/A): '||to_char(sq.VOLUME_TOTAL,'990D00')|| '/' ||to_char(sq.VOLUME_AVAILABLE,'990D00') AVAILABILITY,
    'Age: '||sq.PATIENT_AGE||'
    ' ||'Gender: '||sq.PATIENT_SEX||'
    ' ||'Bloodtype: '||sq.BLOOD_TYPE||'
    ' PATIENT_INFO,
    DML_SERVICE.get_Diagnoses(sq.SAMPLE_ID) DIAGNOSES,
    DML_SERVICE.get_Medications(sq.SAMPLE_ID) MEDICATIONS,
    DML_SERVICE.get_Interferences(sq.SAMPLE_ID) INTERFERENCES,
    DML_SERVICE.get_LabData(sq.SAMPLE_ID) LABDATA,
    decode(to_char(sq.ALIQUOTS_AVAILABLE), '0', null, htmldb_item.text(1, '1', 1, 2)) ORDER_QTY,
    decode(to_char(sq.ALIQUOTS_AVAILABLE), '0', null, htmldb_item.checkbox(2,sq.SAMPLE_ID)) ORDER_ME
    from SEARCH_V01 sq
    where sq.DIAGNOSIS = 'D-Dimer'
    order by 1 desc
    The DML_SERVICE functions just return a string(Varchar2). At the right side of the report I have two columns, one with a textfield (ORDER_QTY, default: 1) and one with a checkbox (ORDER_ME) for each line.
    For each line where the checkbox is checked, a process (On Submit - after Comp and Val) places the order for the requested quantity (this is done by inserting an Order ID into the ALIQUOTS table -> see bold update statement below).
    The process follows:
    declare
    alq_qty number;
    alq_id number;
    cnt number;
    begin
    cnt := 0;
    for i in 1..HTMLDB_APPLICATION.G_F02.count
    loop
    select count(*) -- set alq_qty to number of available alq's
    into alq_qty
    from ALIQUOTS a
    where a.SAMPLE_ID = HTMLDB_APPLICATION.G_F02(i)
    and a.ORDER_ID = 0;
    insert into D_DEBUG (ID, DD) values (1, 'wanted: ' || HTMLDB_APPLICATION.G_F01(i) || ' available: ' || alq_qty); -- REMOVE!!!
    if alq_qty > to_number(HTMLDB_APPLICATION.G_F01(i)) then -- if there are enough alq's
    alq_qty := to_number(HTMLDB_APPLICATION.G_F01(i)); -- set alq_qty to number of ordered alq's
    end if;
    for n in 1..alq_qty
    loop
    select min(ID)
    into alq_id
    from ALIQUOTS
    where sample_id = HTMLDB_APPLICATION.G_F02(i)
    and order_id = 0;
    insert into D_DEBUG (ID, DD) values (1, 'alq_id: '||alq_id); -- REMOVE!!!
    update ALIQUOTS
    set order_id = :P130_SELECT_ORDER
    where id = alq_id;
    cnt := cnt + 1;
    end loop;
    dml_service.upd_sample_record(HTMLDB_APPLICATION.G_F02(i)); -- refresh data in SAMPLE table
    end loop;
    :P130_MSG := 'Assigned '||cnt||' aliquots to order: '||:P130_SELECT_ORDER;
    end;
    Now my problem is that this process does what it should, sometimes. When I enter 6 in one row and check the checkbox and enter 4 in another row and check that checkbox and then press SUBMIT, 10 aliquots are assigned to my order.
    Sometimes.... the other times the process just orders 2 aliquots, one of each line and disregards the number entered in the textfield.
    Or so it may seem: I added some lines to write debug info into D_DEBUG (see above.) From those entries you can assume that the content of HTMLDB_APPLICATION.G_F01(i) is in fact '1' when the process does its work. So I think the problem lies somewhere in the creation of htmldb_item.text(), (I went through the API of that htmldb_item again and again...)
    Also: I can reproduce / recreate this error. It's totally weird: for some rows it (always) works and for some it (always) doesn't !!!
    So, any help, any suggestion is really appreciated (I'm currently working on bringing the crucial part of this to marvel.oracle.com)
    -David-
    [Edited by: sleuniss on Jul 15, 2004 12:18 PM]
    Changed subject line.

    Now the subjectline is right, but the indentation is gone.... :-(
    again the SQL query:
    select     distinct(sq.SAMPLE_ID) XXX,
               'ID: '||sq.SAMPLE_ID||'
    ' ||'Type: '||sq.SAMPLE_TYPE||'
    ' ||'Collection Date: '||sq.COLLECTION_DATE SAMPLE_INFO,
               'Aliquots (T/A): '||to_char(sq.ALIQUOTS_TOTAL)|| '/' ||to_char(sq.ALIQUOTS_AVAILABLE)||'
    ' ||'Volume (T/A): '||to_char(sq.VOLUME_TOTAL,'990D00')|| '/' ||to_char(sq.VOLUME_AVAILABLE,'990D00') AVAILABILITY,
               'Age: '||sq.PATIENT_AGE||'
    ' ||'Gender: '||sq.PATIENT_SEX||'
    ' ||'Bloodtype: '||sq.BLOOD_TYPE||'
    ' PATIENT_INFO,
               DML_SERVICE.get_Diagnoses(sq.SAMPLE_ID) DIAGNOSES,
               DML_SERVICE.get_Medications(sq.SAMPLE_ID) MEDICATIONS,
               DML_SERVICE.get_Interferences(sq.SAMPLE_ID) INTERFERENCES,
               DML_SERVICE.get_LabData(sq.SAMPLE_ID) LABDATA,
               decode(to_char(sq.ALIQUOTS_AVAILABLE), '0', null, htmldb_item.text(1, '1', 1, 2)) ORDER_QTY,
               decode(to_char(sq.ALIQUOTS_AVAILABLE), '0', null, htmldb_item.checkbox(2,sq.SAMPLE_ID)) ORDER_ME
    from     SEARCH_V01 sq
    where  sq.DIAGNOSIS = 'D-Dimer'
    order    by 1 desc
    and the process:
    declare
       alq_qty number;
       alq_id number;
       cnt number;
    begin
       cnt := 0;
       for i in 1..HTMLDB_APPLICATION.G_F02.count
       loop
          select count(*) -- set alq_qty to number of available alq's
           into alq_qty
           from ALIQUOTS a
           where a.SAMPLE_ID = HTMLDB_APPLICATION.G_F02(i)
           and a.ORDER_ID = 0;
    insert into D_DEBUG (ID, DD) values (1, 'wanted: ' || HTMLDB_APPLICATION.G_F01(i) || ' available: ' || alq_qty); -- REMOVE!!!
          if alq_qty > to_number(HTMLDB_APPLICATION.G_F01(i)) then -- if there are enough alq's
             alq_qty := to_number(HTMLDB_APPLICATION.G_F01(i)); -- set alq_qty to number of ordered alq's
          end if;
          for n in 1..alq_qty
          loop
             select min(ID)
              into alq_id
              from ALIQUOTS
              where sample_id = HTMLDB_APPLICATION.G_F02(i)
              and order_id = 0;
    insert into D_DEBUG (ID, DD) values (1, 'alq_id: '||alq_id); -- REMOVE!!!
             update ALIQUOTS
              set order_id = :P130_SELECT_ORDER
              where id = alq_id;
             cnt := cnt + 1;
          end loop;
          dml_service.upd_sample_record(HTMLDB_APPLICATION.G_F02(i)); -- refresh data in SAMPLE table
       end loop;
       :P130_MSG := 'Assigned '||cnt||' aliquots to order: '||:P130_SELECT_ORDER;
    end;
    -David-

  • CS2's Tricky Right-Click (Windows Open With... Has No Illustrator Listing)

    I've seen several people ask about this and have had the problem myself.  I've seen few answers and most that have asked seemed to have sought help elsewhere or given up.  Having solved it with a little hunting and digging around for info, I thought I'd share what I've learned.  I know this is a half-decade-old issue, but I had it today and I'm sure I won't be the last.  Hopefully somebody else out there can benefit.
    Problem:  Upon installing the CS2 suite, Illustrator is not listed as an option for opening files in the contextual/right-click menu within Windows Explorer.  (Generally applies to PDF filetype, but should work for others if the issue comes up.)  Attempts to add Illustrator result in error messages or non-response from the Open With dialogue.
    Solution:  This solution will require editing your registry.  Registry files are very critical to the inner workings of Windows and if you're not sure about what you're doing, please ask an advanced user (or admin/I.T. dept. if you're on a work computer) for assistance.
    First, be certain that Illustrator and any other program that can open your PDF files are installed properly.  (Photoshop, Acrobat and Reader will do, for example.)
    If PDF is already associated with another program, you can skip to the next step.  In Windows Explorer, select your PDF and right-click on it.  Select Open With... then pick any program.  (Actually, even a program that can't open PDF's should work for this process, but you may have unnecessary difficulty.)  See that the checkbox to always use the selected program is turned on.  Click OK.  You may close the program after it opens.
    Now you'll need to retrieve the complete path to Illustrator.  One easy way to find this is to locate the program listing in your Start menu, desktop, wherever it is.  Right-click that icon and select Properties.  You do NOT want the path that's listed under Location on the General tab.  On the Shortcut tab, select and copy the path listed in the Target field.  You do not need to copy the quotation marks, if there are any.
    Next we need the Registry Editor...please do heed the warning above before proceeding.  Click on the Start menu, then Run...  In the Run pop-up (the Start\Search box in Windows 7 also works) type regedit then click OK.
    You should now have a window with what look like folder branches on the left-hand side.  These folders are called keys.  If you only see one item marked Computer, click the plus sign or arrow to expand the list.  There will be one key labaled HKEY_CLASSES_ROOT.  Expand that as well.  You should get a VERY long list that begins with * and proceeds through many file extensions and other items.  Scroll down...way down, past all the items that start with periods and other special characters.  We're looking for the P section, which in my list is about 3/4 of the way to the bottom.  Expand the key labeled pdf_auto_file.  (There is a .pdf item higher in the list.  Keep going if you're there.)
    We are now at: Computer\HKEY_CLASSES_ROOT\pdf_auto_file
    Expand all of the keys inside pdf_auto_file.  There should be one named shell, holding edit and open, each of which holds a final key named command.  Inside each of the command keys should be one item that shows on the right-hand side.  That item (this is called a value) is named (Default) and you'll notice the data within holds the path to the program you selected earlier.  This is what we need to change, iniside both command keys.
    Double-click the value name (Default) or icon.  A window will pop up named Edit String.  In this window, note the Value data containing the program file path.  This is usually surrounded by " and " "%1 ".  Select only the path between the quotation marks, ending in exe.  Now paste the path you copied earlier for Illustrator.  Take note that the complete string looks similar to:
    "E:\Adobe\CS2\Adobe Illustrator CS2\Support Files\Contents\Windows\Illustrator.exe" "%1"
    Click OK to close the box, then go to the other command key and repeat the replacement for its data value.  Close that box and you should be finished editing.  You may close the Registry Editor now, as well as any other windows you don't need.
    In Windows 7, this was pretty much all I needed to do.  Earlier versions may or may not need rebooting Windows to update the active system.  I've now got Illustrator as my default program for PDF's and it's available in the Open With... window should I chose to change my mind a couple times.  The PDF icon even updated itself. 
    Should you need any details explained further, drop a reply...I think I'll get a notice, though this is my first post here.  If I don't respond very soon, feel free to e-mail my nickname @aol.com to remind me.  Good luck!

    In XP Pro, not there to be 100% sure, that "open with" already has Illustrator CS3 listed and no version 10, the opposite of what Bridge shows.
    I'll try it, just in case that helps update Bridge.
    Thanks

  • SAPINST: "Database EPD has wrong compability level"

    Hi
    We are doing a "homogeneous system copy" of a java system:
    WebAS Java 6.40 SP16 (with EP 6.0 SP16)
    Basically we are changing from a 32-bit platform to a 64-bit platform and ind the process also shifting from MSSQL 2000 to 2005 and renaming the SID.
    Source platform:
    - MSSQL 2000
    - Windows 2003 on x86
    Target platform:
    - MSSQL 2005
    - Windows 2003 on x64 (AMD)
    We are using SAPINST NW04 (patch collection version) and choosing to use a database-specific method for the database copy (backup/restore).
    On the target system the RDBMS MSSQL2005 (9.00.2047.00) has been installed and the source database (EPP) has been restores (and renamed as EPD).
    The error:
    When running the SAPINST on the target-platform in one of the last phases when prompted for the "Database Information" (choosing "EPD"), then we get the error "Database EPD has wrong compability level"
    Any idea what is wrong ?
    Best regards
    Tom Bo

    Hello,
    U might have to consider the impact of migrating the MSSQL 2000 to MSSQL 2005 also the impact of using the 32-bit to 64-bit conversion..
    U first have to consider the pre-migration checks for O.S. and DB...
    dont forget to give reward point plz.

  • 'Idoc has wrong status'

    Hi SDN,
    Good morning to all of you. I came infrom of you with a small quaery related to IDOC. My query is sales order is going to be created via IDOCs (Which came from XI) through FM IDOC_INPUT_ORDERS. While creating the SO we are generating the mails to users if any errors will be encountered, but here every thing is working fine and some times it is generating mail with the message 'Idoc has wrong status' for successful also. Not for all only for few sucessfull SO's it is generating mail. Please suggest me any configuration i need to check or any thing else. Please suggest me....Appriciate your valuable suggestions......Waiting for your valuable reposnse.....
    Regards,
    Kumar

    Hi Santosh,
    Thanks for your immediate response. It is giving me status 53.
    Regards,
    Kumar

  • OS has wrong time zone, so db has wrong time zone after RAC db installed

    hi Guru, after the RAC db installed, and it is a alive production DB, then I realized that the os has wrong time zone which is MDT (mountain time), I want it as CDT, so I am planning to ask sys admin to change os to CDT, then I just need to bounce the db once os time zone changed? Is that right? that won't corrupted the db after os time zone change right? And this is 2 nodes RAC db, anything I need to be aware before os level timezone change?

    Hello;
    Fix the time on the OS and restart the database and you should be done. Simple as that. So to answer your question Right.
    Best Regards
    mseberg

  • Smartform form {T_HEADER} has wrong page format

    I have a header window that contains a table for column headings just above my main window.  Somehow in the process of inserting a column and adjusting the size, I caused the following error to continue each time I attempt to print preview the form:
    Form T_HEADER has wrong page format.
    I have reviewed the details of the table to verify the width and the total of the line type column widths match.  The header window that contains the table also has the same width.  I am confused as to why I continue to get this error, but it is keeping me from testing any other changes to the form.  I am stuck here.
    P.S. I searched this forum for "form has wrong page format" and found one similar post that did not answer my issue.
    Thanks in advance.
    -PA

    hi Phillip,
    the easiest thing is that you download your form and upload it here, so I got a chance to import it and have a look at exact the same dataset as you do. OF course, delete all the stuff you don't want to share and is unnecessary to fix this issue.
    You can try one thing before, delete the table and create a new one with the same formats. Sometimes the compiler interpret it wrong because... I don't know why, but I realized that just delete helped
    ~Florian

  • Weak References in Listener Lists

    I've found a common source of memory leaks is when objects that add themselves to listener lists forget to remove themselves when they are done.
    It would be nice to generalize and say that listener lists should contain weak references, but there are probably valid cases where a listener's only valid reference is through the listener list.
    It would be nice to extend the listener pattern so that the listener could specify if they should be referenced weakly, for examplemodel.addChangeListener(this, true)where true indicates the reference to the listener should be weak.
    In some cases like the Model View Controller pattern, it probably makes sense that whenever a view listens to a model it should be weakly referenced. For example, when you construct a JTable and pass the model as a parameter to the constructor, the JTable should always specify a weak reference when it listens to the model.
    I think supporting a feature like this in the listener APIs could help reduce the potential for memory leaks and make code a little more maintainable.

    There was another time that I dabbled in this idea.
    But it always comes back to objects cleaning up
    after themselves. Now if its not your code and you
    cant ensure good behavior, then perhaps there is
    cause. But I'd keep an assert and report the issue
    if I saw it trigger.What would fire the assert? The Listener will never be garbage collected while it is listening to something. I assume that you are talking about when the listener is a Swing Object like a JFrame. I don't really like to use gui components as listeners.
    If you have to write a clean up method, it kind of defeats the value of having automatic garbage collection to a degree. I like to be able to let my Objects just fall out of scope or just become unreachable when they are no longer needed without having to actively manage their deallocation.

  • Run time error 4706 column has wrong type to be key

    Hi,
    I am getting error after installing Bex BI 7 version , I have installed .net fromework 2.0 and BI7 version when i m trying to open the bex analyser i am getting the following visual basic
    error .
    Run time error 4706
    column has wrong type to be key

    please help any help in this regard will be appreceated

  • My current project in the events library has gone into list mode. ie a single clip on the left, one above another, so showing only about 7 clips. how can I get it back into normal horizontal mode

    My  current project in the Events Library has gone into list mode. ie a single clip on the left one above another, so showing only about 7 clips. How can I get it back into normal horizontal mode?

    That's about what it's supposed to look.
    How do You want it to look ?
    a. You can change places by using this
    b. May be You changed this top right symbol of an hard disk ?
    c. or changed the number of frames to be viewed ?
    d. OR - it can (at least for me) be so that You think of how it looks in iPhoto. (To me a very common mistake)
    Yours Bengt W

  • I Cloud has wrong Apple ID

    The iCloud just has wrong Apple ID on my new iPad and I see no option to change it to the correct one.  The area for Apple ID is grayed out and I can not change it. How can I fix the issue? It says a verified email to the email address I have logged in but its the wrong email therefore I can not verify or put in a correct password to delete the account.

    From Apple. What happen was I reset my phone and the I cloud was deleted when I entered my apple id back in I accidentally entered the wrong ID and sent the email to verify it to add it. I cant change it now at all its greyed out because its waiting for me to go onto the email I entered which is wrong and verify the account

Maybe you are looking for