Can I rebuild dbconsole without putting database in quiesce mode?

I have a database (10Gr2) that the dbconsole just won't start up, while it say's its starting up, and during that time I can actually log into the console and look at things, navigate around etc., but then I get a message saying that it could not be started, and I lose the console connection.
I know the fast way is to just do the dbconsole recreate, but this puts the database in quiesce mode, which amounts to an outage, which I would sooner avoid.
Is there a way to drop and recreate without affecting users?
thanks

what you can do here launch dbca and create another instance dbconsole

Similar Messages

  • Avoid putting database in quiesce mode

    Hello all,
    had a question with regards to dropping EM repositry.
    When i run below on 11.2.0.2 i get a warning saying DB will be put in quiesce mode
    emca -deconfig dbcontrol db -repos drop
    WARNING : While repository is dropped the database will be put in quiesce mode.
    but when i do the same for 11.2.0.1 it do not get any warning or anything...
    is this something new for 11.2.0.2 ?? How can i avoid this??
    As its hard for us to get some downtime for this system(which is 11.2.0.2)...
    is there any other way to drop the repositry with putting DB in quiesce mode..
    reson for this is, we are going to install OEM Agent on this, so need to drop the repositry of exsitnig DB
    here is the exacty error...
    $ emca -deconfig dbcontrol db -repos drop
    STARTED EMCA at Nov 15, 2011 4:04:15 PM
    EM Configuration Assistant, Version 11.2.0.0.2 Production
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Enter the following information:
    Database SID: ORCL
    Listener port number: 1521
    Password for SYS user:
    Nov 15, 2011 4:04:25 PM oracle.sysman.emcp.DatabaseChecks checkRestrictedMode
    WARNING: ORA-01034: ORACLE not available
    Nov 15, 2011 4:04:25 PM oracle.sysman.emcp.DatabaseChecks checkDataGuardEnabled
    WARNING: ORA-01034: ORACLE not available
    Password for SYSMAN user:
    WARNING : While repository is dropped the database will be put in quiesce mode.
    Do you wish to continue? [yes(Y)/no(N)]: N
    $
    Edited by: user8363520 on Nov 15, 2011 8:05 AM

    It's an harmless message.
    This topic is explained at MOS:
    Bug 12861049 Trying to drop or recreate the database control in 11.2.0.2 using emca shows following Warning : While repository is dropped the database will be put in quiesce mode.

  • TS1702 can i sign up without putting a card number in

    can i sign up without putting in a credit card number unless i want to?

    can i sign up without putting in a credit card number unless i want to?
    Try following the instructions here:
    Create an iTunes App Store account without a credit card
    http://support.apple.com/kb/HT2534
    Hope it helps.

  • Can you Close notebook without putting to sleep?

    Can you close notebook without putting it to sleep.
    I use 23 display and would prefer to close my macbook but it puts everything to sleep when it's closed.

    Welcome to the Forums!
    Yes...but you need an external keyboard and mouse (USB or Bluetooth).
    See this article:
    http://docs.info.apple.com/article.html?artnum=86286
    Hope this helps...

  • How to put database in RESTRICTED mode ?

    Hi,
    in 9.2.0.6 on Windows 2003 server how to put database in RESTRICTED mode ?
    Many thanks before.

    ERROR at line 1:
    ORA-12719: operation requires database is in RESTRICTED mode
    That's because 'ALTER SYSTEM QUIESCE RESTRICTED' doesn't actually put the database into restricted mode:
    SQL> select logins, active_state from v$instance;
    LOGINS       ACTIVE_ST
    ALLOWED       NORMAL
    SQL> alter system quiesce restricted;
    System altered.
    SQL> select logins, active_state from v$instance;
    LOGINS       ACTIVE_ST
    ALLOWED       QUIESCEDTry staring the database in restricted mode and then quiescing it:
    SQL>
    SQL> shutdown immediate;
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup restrict;
    ORACLE instance started.
    Total System Global Area  167772160 bytes
    Fixed Size                  1289508 bytes
    Variable Size             117441244 bytes
    Database Buffers           46137344 bytes
    Redo Buffers                2904064 bytes
    Database mounted.
    Database opened.
    SQL> alter system quiesce restricted;
    System altered.
    SQL> select logins, active_state from v$instance;
    LOGINS           ACTIVE_ST
    RESTRICTED       QUIESCED
    SQL>As you can see from V$INSTANCE, when you are running in restricted mode LOGINS will have a value of 'RESTRICTED'
    However - I still think that if you are dealing with users logging in to your (RESTRICTED) database via the listener then the easiest option is to stop the listener whilst the database is down and restart it once your alter database command has completed.
    PS : No any other user is connected.No, they wouldn't be this time because you had quiesced the database... but you still need to get the database into restricted mode for this alter database command.

  • Why we need oracle database reboot to put database in  archivelog mode?

    I know how to enable archivelog mode, but what is the reason that to enable archive log we need database restart. which process forces to do that.

    SantoshGanjure wrote:
    Thanks a lot EdStevens for ur prompt response...I need something that satisfies my managers query.
    If the question has originated with the PHB, then my flippant answer is even more relevant ...
    PHB's are incapable of understanding the technical details, so I prefer to give them the 'executive summary':
    "Because that's the way Oracle is written.  We can argue over the technical merits of such a requirement 'till the cows come home.  But at the end of the day, we have to shut down the database because the 'alter database archivelog' command will only succeed when the database is in mount (not open) mode.  Now, let's work out how we can achieve our objective of putting the database in archivelog mode with minimal and appropriately scheduled down time."
    As for the actual down time, it's about as minimal as you can get.  How long does it take your database to complete a shutdown once the command is given?  How long does it take you to type "startup mount"?  How long does it take you to type "alter database archivelog"?  to type "alter database open;"?  For the database to complete the 'open' process?  You could even script it so as to eliminate the keyboard typing time.

  • Database in quiesce mode

    How should I come out of this?
    Suddenly I am seeing this message in the alert log after everyone complained that they couldn't do anything with the database?
    I tried this
    SQL> ALTER SYSTEM UNQUIESCE
      2  ;
    ALTER SYSTEM UNQUIESCE
    ERROR at line 1:
    ORA-25502: concurrent ALTER SYSTEM QUIESCE/UNQUIESCE command is running
    SQL> v$blocking_quiesce
    SP2-0734: unknown command beginning "v$blocking..." - rest of line ignored.
    SQL> select * from v$blocking_quiesce
      2  ;
    no rows selected
    SQL> select active_state from V$INSTANCE
      2  ;
    ACTIVE_ST
    QUIESCINGThanks
    Nith
    Edited by: user645399 on Oct 15, 2010 10:50 AM
    Edited by: user645399 on Oct 15, 2010 10:56 AM

    This forum is dedicated to issues related to database upgrades. Your question is better suited to the General Forum (General Database Discussions
    You are correct in that creating an OEM repository will cause the database to enter quiesce mode, depending on your OEM/database version. This is documented in MOS Doc 375946.1 (Running EMCA Results in Database quiesce And No New Connections or Operations Can Be Performed During the DB Control Repository Creation).
    HTH
    Srini

  • Can you rebuild SSA without losing any settings?

    Due to a long story (below) I'm at the point where I probably have to rebuilt my Search Service Application. However, I don't want to lose all the search settings.
    I found this
    https://gallery.technet.microsoft.com/office/5ce9297e-90e6-4439-a584-04182b12dd43  which says it will allow me to export Content Sources, Query Rules, Crawl Rules, and File Extension Settings. That does not seem to be all the settings I want though,
    I have a lot of Managed Properties. I have not found anything else yet that lets me export search settings.
    My questions are:
    1. is there a way to save all the settings, then create a new SSA, then re-apply the settings, so I don't lose Query Rules, Managed Properties, etc? Is there another (Free) tool out there that will let me export all settings? Or are managed properties in
    some completely different location than those 4 search databases.
    2. is there way to not lose the "training" that search has done to remember what people have searched on and how they use search? (such as when it shows the user things they did recently, or the auto-fill in search boxes that fills in with likely
    searches they might want)
    ==============
    The problems we are having:
    Due to trying to migrate to new servers, use of stsadm -o renameserver, (which worked perfectly in our Test environment but did not work so perfectly in production) I cannot get my search service working or update my topology (several topology items are
    in warning or error state. (Before I started all servers were in "No action required" state on "manage servers on this farm" page in CA)
    QueryProcessing and Analytics Components stuck in Degraded, non-active, "resolving" state
    Indexing components stuck in "replicating" state, even though there are no items in the index.
    I have tried everything I could find online (such as mentioned here
    https://www.kieferconsulting.com/blog/Pages/SP2013-Fixing-Search-After-The-Index-Drive-Fills.aspx  ) including restarting the services, trying to reset index, stopping timer and search host services and then manually deleting index files (then running
    $ssa.Reset($true,$true) ). I have tried to set a new topology that does not contain the broken ones, but I can't I keep getting that I have to finish an upgrade on another server (and I can't set the topology on that server either). I can't even pause via
    $ssa.Pause() it just times out. $ssa.Reset() times out. And the logs just say it's waiting for an update, that is the only issue.
    I tried psconfig -cmd upgrade -inplace b2b but that would die saying it was still waiting for an upgrade.
    So then I ran this:
    stsadm -o setproperty -propertyname command-line-upgrade-running -propertyvalue No
    psconfig -cmd upgrade -inplace b2b -wait -force

    Hello Christopher,
    Thank you for your question.
    We are currently looking into this issue and will give you an update as soon as possible.
    Thank you for your understanding and support.
    Best regards,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Stream 7 Can't Turn off screen without putting tablet into sleep mode

    Is there a way to switch the screen off without the tablet going into sleep mode?
    So that I can play music in the background?

    Hey @Crixxtachi ,
    Welcome to the HP Forums!
    I understand you're experiencing issues playing background music while the screen is off.
    The tablet will work just like a laptop or desktop and we need to look at some Windows settings for this. 
    The simplest solution is to access your power management settings, and set the display to go to sleep but not the computer, or at least increase the time before the PC actually enters sleep mode.
    I havn't had a chance to test a Windows tablet yet but I would assume that in the power management settings you should see something on the left hand side that says "Change what pressing the power buttons do." In here you may be able to set it to turn off the display.
    Let me know if that helps.
    Please click the "Kudos, Thumbs Up" at the bottom of this post if you want to say "Thanks" for helping!
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    The Great Deku Tree
    I work on behalf of HP.

  • Put database in archivelog mode

    I know how to do it.
    using oracle 9.2.0.8 on AIX 5.3
    My question is that can I mention a different location
    my database installed in /opt/oracle/product/9.2
    datafiles/control files and redolof files
    in /var/data/oracle/product/9.2/orcl
    I want archive to be in
    /var/data/oracle/product/9.2
    How can I do this
    please suggest

    Is this standard or enterprise edition?
    On the enterprise edition you can use the log_archive_dest_N (n=1..10) instance parameter file to configure up to ten different locations. As an example, you would configure: log_archive_dest_1="location=/var/data/oracle/product/9.2 mandatory" You have to configure log_archive_format as well (unless you want the default format mask); log_archive_format=arch%S.arc and the log_archive_start parameter to true.
    Shutdown normal or immediate your database. Once it is shutdown start it up to the mount state:
    startup mount
    and issue the alter command:
    ALTER DATABASE ARCHIVELOG
    open your database and you will be working on archivelog mode.
    If you are on a standard edition, just proceed as previously indicated, the difference is that log_archive_dest_N parameter is not available, and you can define up to two different file locations, parameters are:
    LOG_ARCHIVE_DEST, LOG_ARCHIVE_DUPLEX_DEST
    and to indicate mandatory or optional, you'll have to use the LOG_ARCHIVE_MIN_SUCCEED_DEST instance parameter.
    ~ Madrid

  • How can I browse websites without disabling FP or Protected Mode?

    I have been installing the latest Flash Players on Windows 7 computers, with IE 8 and 9 for over a month with this issue.  Once our Users are logged in with just User Level accounts they may be able at first to browse websites like MSN or TV stations, but the next day or so cannot do so (Pages take forever if they waited!) unless the IE Add-on of Shockwave Player is disabled, or IE Security setting Protected Mode is unchecked (disabled).  I've tried some steps including changing the Hardware Acceleration, uninstalling and re-installing Flash Player.  I'm not finding a solution!  Your help will be appreciated!

    Hi Joe,
    This is a known issue with IE and should be fixed with our latest beta release which you can download here:
    http://labsdownload.adobe.com/pub/labs/flashruntimes/flashplayer/flashplayer11-6_install_w in_ax.exe
    Please give it a try and let us know how it works for you.
    Thanks,
    Chris

  • HT201210 My ipod shows a white screen and I can't restart it or put it on recovery mode

    when I tried to upgrade to the iOS 6 it stopped and then when I tried to restart it, it turn white and now I can't restart it... it always go back to that white screen.

    Recovery Mode
    1. Disconnect the USB cable from the device, but leave the other end of the cable connected to your computer's USB port.
    2. Turn off the device: Press and hold the Sleep/Wake button for a few seconds until the red slider appears, then slide the slider. Wait for the device to turn off.
    3.While pressing and holding the Home button, reconnect the USB cable to the device. The device should turn on.
    4. Continue holding the Home button until you see the "Connect to iTunes" screen. When this screen appears, release the Home button. iTunes should alert you that it has detected a device in recovery mode. Click OK, and then click Restore to restore the device.
    Note: Data will be lost. You may have to repeat the above many times.

  • Connect MBP to external monitor without putting it to sleep mode closed

    Hi,
    You must be wondering what I mean.
    I want to connect my MBP mid 2010 to a external monitor. (Already done that)
    My problem is:
    I`m now using my MBP on my external monitor. But, the laptop is open beside the monitor (which is kinda annoying for me) . every time I close the MBP, the laptop automatically puts to sleep, which is normal right? what I want is, using my macbook on external monitor while the macbook is closed and not in sleep mode. Is that possible? Dont know if you understand what I mean, I`m not that good in english.
    :P

    Hey! Everyone! If you don`t understand what I mean, (I know that I`M ***** at english) feel free to say "I Don`t understand what you mean! you F*cking IDiot!"...
    just need some help.

  • How can i access appstore on new ipad air without putting credit card details on my already existed apple id.

    Hi
    I made my apple id for my new 1st apple ipad air from my hp laptop. when i want to access appstore to download some free apps it is asking to review my details for credit card and i dont have that.
    I know that we can make new account from ipad/appstore without putting down payment details but how can i access appstore without putting credit card details on my already existed apple id.?

    You can create an iTune and App Store account without credit card
    1. Sign out of current Apple ID if you are sign-in to one (important)
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (you must create a new Apple ID; don't use your old Apple ID)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • HT204088 how do i get free apps without putting in itunes card, or credit card

    wondering how i can get free apps without putting in itunes card or credit card, wont let me do this....

    Is it a new account ? If it is then unless you use the instructions on this page when creating a new account : http://support.apple.com/kb/HT2534
    then credit card details will need to be entered before the account can be used to download any item from the store - you should be able to remove your card's details after entering them.
    If you don't have a credit card then you will need to create a new account, and this time use the instructions on that HT2534 page when creating it. If you want to use the same email address then you will need to replace it on that account first e.g. by tapping on it in Settings > iTunes & App Store on your phone and logging into it, via the Store > View Account menu option on your computer's iTunes, or via http://appleid.apple.com
    Creating an account with 'none' as the payment method :
    computer's iTunes : https://discussions.apple.com/message/24321860
    iPhone :https://discussions.apple.com/message/24700173

Maybe you are looking for

  • Computer - computer network and internet sharing

    I apologise if this has been discussed elsewhere - please point me to any useful links. I have a G4 iMac and iBook (running 10.4.6) both with airport extreme cards installed. I would like to use a computer to computer connection for file / printer sh

  • 1st generation iPhone and Early Termination Fee

    Hello all, here's a question, since it was announced that AT&T will no longer share revenue with Apple does this now mean that owners of the unsubsidized 1st generation iphone will be able to get out of their 2 year contracts early without a Early Te

  • I can log in to my wordpress site or rather I can get into the back end of my site but I can no longer see the edit button on Firefox

    I use firefox 24 and it was working fine up until last weekend then I could no longer see the edit button on my wordpress site. The thing is that I can get into my site via the site-wp-admin url as cookies allow me to do so but once I click on visit

  • Bet you haven't seen this problem before....

    ...finally getting around to installing Leopard. Actually pre-bought it before it was released. Spent yesterday backing up my current OS onto an external hard drive (bootable) and it took awhile but finally finished and tested the back-up. SUCCESS!!!

  • AQ; drop_queue_table; ORA-24080

    I tried to drop (dbms_aqadm.drop_queue_table) a multiple consumer queue table (propagation to two subscribers) and received the following error message: ora-24080 : unschedule_propagation pending for <queue_name> and <destination> I noticed, that the