Deleting db disabled in DBCA

Dear all,
11g on solaris..
when am using DBCA to delete a 11g DB in the server .. delete a db option is disabled in the dbca screen.
How to enable this ?
Kai

Thanks robert and Aman,
We have 3 db running in the server solaris 10.
Version :
2 X 10g DB
1 X 11g DB
We have 2 oratab in the location /var/opt/oracle
and the name is like
oratab and oratab_10g_11g
oratab contents
*:/rp/appl/oracle/product/infra102/102:N
orcl:/rp/appl/oracle/product/infra102/102:N
*:/rp/appl/oracle/wflow:Noratab_10g_11g contents
tapps:/rp/appl/oracle/product/11gdb:N
tsoa:/rp/appl/oracle/product/10gdb:NI wonder why the option Delete a Database is disabled in DBCA ?
Kai

Similar Messages

  • Getting users disabled/deleted with disabled resources in OIM

    Hi,
    Consider following use case related to OIM:
    To get the Users deleted or disabled on a particular date with their 'AD User' resources which are in disabled state.
    By means of built in reports i can get the users disabled or deleted for particular date.... how do i get the disabled AD User resource for each user....
    i can go for scheduler task but how to proceed on that?

    the exact requirement here is to get the users/deleted a day before along with their 'AD User' resources which are disabled
    getObjectsByTypeStatus(long plUserKey, java.lang.String psObjectType, java.lang.String psStatus)
    Gets a list of all the objects of the specified type that have been provisioned for a user and are in the specified status.
    What i can make out here is that:
    i need to write some logic that would give users disabled/deleted say yesterday... after this i would loop in these user keys into getObjectsByTypeStatus that would give resources disabled for each user.
    Am i correct?
    Now how do i get the users disabled/deleted yesterday. This is realised by default Users Disabled/Users deleted report.
    But how do i use it in my scheduler
    Edited by: Chhavi Saluja on Jun 30, 2010 1:20 AM

  • How to delete or disable chart

    How can I disable chart from the existing report?
    Do I need to go WAD and look for the templet for particular query and check for setting?
    Query contains the chart, so I am assuming web template was used to create it. Pleas help me to get some directions and steps to delete or disable the chart.
    Thanks,

    Hi Isac,
    If you  want to disable chart in report you need to go to the WAD template of that particular report and you can remove that chart from the templete.
    Chat contains query behind it and query doesn't contains any chart.
    Revert back if you still have any queries.
    Regards,
    Rajkandula

  • How do you permantely delete or disable the add-on toolbar?

    The add-on toolbar keeps popping up at the bottom of the browser. I go into View, Tool bars and click to disable the add-on tool bar and it disappears. I browse and, behold, the add-on tool bar appears again at the bottom. I repeat and the same results.
    I would like to permanently delete, or disable this tool bar if possible.

    Eröffnen wir mit einer Klatsche, Chapeau Frau Gause,
    Perhaps it it the search function that does not work properly, because my key words that brought up this thread (Which has neither been closed nor referred to "the solution" - what moderators should do in forums).
    - Update the system > There is no update for Illustrator 2014.1
    - convert to a smart rectangle > Sure, but cumbersome
    - free form tool > yep, found that one as well
    The biq question remains - when will the bugfix release come?

  • AD Identity Service: Delete or Disable users that aren't found?

    We currently set users to be "disabled" but then we have to periodically remember to go in there and delete them manually. It also creates issues with duplicate login names. Do you delete your users automatically? I've always been concerned that if something goes wrong with a sync then all my users would be deleted.

    We had the same issue here, so I wrote an external operation that piggybacks on the user sync job and deletes any disabled users older than X amount of days. For instance, in our case users are deleted after 180 days of being disabled (this is a bit extreme). This way you can give yourself a few days before the users are actually deleted, but keep the process automated. There are a couple of options built in, which should be discernible from the source code. Here is the source:
    package com.oracle.services.jobs;
    import com.oracle.services.utility.SessionManager;
    import com.plumtree.openfoundation.util.XPCalendar;
    import com.plumtree.openfoundation.util.XPDateTime;
    import com.plumtree.portaluiinfrastructure.resultwrapper.ASQueryResultWrapper;
    import com.plumtree.server.IPTObjectManager;
    import com.plumtree.server.IPTQueryResult;
    import com.plumtree.server.IPTSession;
    import com.plumtree.server.IPTUser;
    import com.plumtree.server.IPTUserManager;
    import com.plumtree.server.PT_LOCKSTATES;
    import com.plumtree.server.PT_PROPIDS;
    * This class takes care of the automation server job for deleting user accounts
    * which have been disabled for some number of days.
    * @author hross
    public class DeleteDisabledAccountsJob {
         // filter for only deleting agent disabled accounts
         private static String FILTER_AGENT = "This user has been locked by a User Synchronization Job.";
         // filter for deleting all disabled accounts (including those disabled by an
         // admin)
         private static String FILTER_ALL = "";
         public static void main(String[] args) {
              // check arguments
              if ((args.length < 2) || (args.length > 4)) {
                   System.err.println("usage: ");
                   System.err
                             .println("DeleteDisabledAccountsJob <security_token> <num_days>");
                   System.err
                             .println("DeleteDisabledAccountsJob <security_token> <num_days> all");
                   return;
              // get a session from the login token
              IPTSession session = SessionManager.createSession(args[0]);
              // get a number of days
              int numDays = 0;
              try {
                   numDays = Integer.parseInt(args[1]);
              } catch (Exception ex) {
                   System.err.println("Number of days not a valid integer.");
                   return;
              // filter all or just the agent?
              boolean filterAll = ((args.length > 2) && (args[2].equals("all")))
                        || ((args.length > 3) && (args[3].equals("all")));
              boolean test = ((args.length > 2) && (args[2].equals("test")))
                        || ((args.length > 3) && (args[3].equals("test")));
              if (test) {
                   System.err.println("This is a just a test. Nothing will be deleted.");
              if (filterAll) {
                   System.err
                             .println("This job will delete all disabled accounts (even those disabled by an admin).");
              } else {
                   System.err
                             .println("This job will delete only users disabled by an authentication source.");
              // calculate 180 days in the past based on today's date
              XPDateTime cutOff = new XPDateTime();
              XPCalendar xpCalendar = XPCalendar.GetInstance();
              xpCalendar.Add(XPCalendar.HOUR, -(24 * numDays));
              cutOff = xpCalendar.GetTime(); // subtract 180 days from current time
              System.err
                        .println("This job will delete any user accounts disabled before: "
                                  + cutOff.toString());
              // query for disabled user accounts
              IPTUserManager userManager = (IPTUserManager) session.GetUsers();
              IPTQueryResult result = userManager.GetLockedAccounts(filterAll ? FILTER_ALL
                        : FILTER_AGENT, 0, -1);
              //ASQueryResultWrapper ptqrUserLock = new ASQueryResultWrapper(result);
              for (int i = 0; i < result.RowCount(); i++) {
                   // get some basic user info
                   int userId = result.ItemAsInt(i, PT_PROPIDS.PT_PROPID_OBJECTID);
                   String name = result.ItemAsString(i, PT_PROPIDS.PT_PROPID_NAME);
                   String login = result.ItemAsString(i, PT_PROPIDS.PT_PROPID_USER_LOGINNAME);
                   XPDateTime dt = result.ItemAsXPDateTime(i, PT_PROPIDS.PT_PROPID_CREATED);
    //               System.err.println("Found account: (" + userId + ") " + login
    //                         + ", " + name);
                   // check to see if we need to delete the user
                   if (dt.Before(cutOff)) {
                        if (!test) { // if test, we just want to see who we would have delted
                             // we have to try to unlock the user b/c of a bug in
                             // automation
                             // server
                             IPTUser user = (IPTUser) ((IPTObjectManager) userManager)
                                       .Open(userId, false);
                             try {
                                  user.SetLockedStatus(false);
                                  user.Store();
                             } catch (Exception ex) {
                                  // we expect this will fail b/c of a bug
                             // make sure the account gets unlocked
                             if (user.GetLockState() == PT_LOCKSTATES.PT_LOCKED)
                                  user.UnlockObject();
                             // okay, now we can delete the user
                             ((IPTObjectManager) userManager).Delete(userId);
                        System.err.println("Removed user account: " + userId + " - " + login + " - " + name);
    }

  • Hi In TB how can I delete or disable the wide pane between the list and message pane?

    Hi
    In Tb 24.6.0 how can I delete or disable the wide pane between the list and message pane?
    Thank you.

    You cannot delete it. It is part of the message pane.
    You can make it smaller with this add on.
    https://addons.mozilla.org/en-US/thunderbird/addon/compactheader/?src=ss

  • Instance management is disabled in DBCA

    I am wondering if anybody knows why the instance management is disabled in DBCA?
    Thanks,
    Shirley

    I'm not quite sure what you mean by 'instance management' in dbca. Looked at the dbca for my 9i, 10g and 11g instances and couln't find anything marked 'instance management'
    Then again, I'm not quite sure what version of database or which operating system you are using, so any guesses I might have will probably be in left field anyway.

  • Hello How do I delete or disable the scrollbar. I use kiosk for fulscreem wants no scrollbar What should I do?

    hello
    How do I delete or disable the scrollbar.
    I use kiosk for fulscreem wants no scrollbar
    What should I do?

    I also already deleted my phone number from iMessage on my MBP.

  • HT5927 how do i delete or disable open apps with the ios7 software?

    How do I delete or disable open apps with the ios7 software?

    Closing open apps:
    double tap home button, swipe up on the app window to close
    To delete its the same as always, hold down the icon until it wiggles then tap the x

  • Hey guys how to delete my disabled iCloud account on my iPad Air without password

    help me guys to delete my disabled iCloud account without password? Thanks.

    You will have to try to recover the password or contact Apple for help.
    https://iforgot.apple.com/
    IF you still cannot recover it, contact Apple according to the instructions here.
    Apple ID: Contacting Apple for help with Apple ID account security - Apple Support

  • Is there a way to delete (not disable) "Private Browsing" function so it isn't available to my teenagers?

    # Question
    Is there a way to delete (not disable) "Private Browsing" function so it isn't available to my teenagers?

    It is strongly discouraged to delete nsPrivateBrowsingService.js as it can cause Firefox to malfunction.
    See this comment from Dave Garrett: https://bugzilla.mozilla.org/show_bug.cgi?id=471658#c27
    You can also look at [/tiki-view_forum_thread.php?forumId=1&comments_parentId=419486#threadId429160]

  • Delete Button Disabled in Outlook 2010 with Exchange 2013

    I recently switched from a 3rd party mail software to Microsoft Exchange.  I have had some users ask me why the Delete button is disabled.  I didn't enable any special policy to cause this, and the Delete key on the keyboard will delete messages. 
    The disabled Delete button I am referring to is in the Home ribbon and the right-click menu for selected e-mail(s).  Is this standard behavior for Exchange, and can it be changed?

    It so happens that I have an XP VM with Outlook 2007.  That having been said, as previously mentioned, before testing, I (thought I) could confirm the same consistent behavior in the following configurations:
    WinXP + Outlook 2003
    Win7 + Outlook 2010
    Each of these systems was using a different user account, and I have tried folderview repairs in EMC to no avail.
    Strangely, WinXP + Outlook 2007 does not appear to exhibit the behavior.  In this test case, the profile and OST were just created, but switching to folderview or moving the reading pane to the bottom did not affect the behavior.
    Given that information, I proceeded to re-verify, and I hadn't checked winXP + Outlook 2003 because the computer in question had been upgraded to Outlook 2010.  However, I verified the issue does still exist there.  Next, I proceeded to check another
    computer that I thought would be WinXP + Outlook 2003, but it had also been upgraded to Outlook 2010.  This computer did not have the issue, and this leads me to a new theory about the cause (but no closer to resolution).  For the record, of the
    three computers (two exhibiting the issue, one not), only one has the Adobe plugin mentioned in my last post in response to Diane Poremsky, so the issue doesn't appear to be related to that.
    That said, my theory follows:  This is somehow related to IMAP in Outlook 2010.  The computers that exhibit the issue were all previously running IMAP in Outlook 2010, and the IMAP PST filse were imported using the MailboxImportRequest feature. 
    I suspect this is related because of other issues that happen for these accounts.  For instance, all new e-mail was only visible in OWA and not Outlook on all folders on these accounts, and I have had to have the users reset filters in the view settings
    for each folder individually.  I don't remember exactly which filter was somehow imported, but it definitely had to do with IMAP.  This may be another red herring, but the behavior is consistent with it.  I should also note that this behavior
    did NOT exist when they were connected via IMAP to the old (non MS) server.  I should also note that the filter behavior is somehow stored on the server (and therefore I imagine the delete button behavior could be as well), because creating a new Windows
    Profile  (and as such, a new Outlook profile and OST file) on a new computer did not make the IMAP filters go away.

  • How to delete or disable addressbook thumbnail cache

    I am running out of disk space and so analyzed the disk utilization. Imagine my surprise when I found com.apple.AddressBook.thumbnailcache directory lurking in /private/var/folders/.... with a whopping 20.8 GB!  So questions :  (1) What is this cache and why is it so large? (2) Is it all right to delete this directory? (3) How can I disable this, because I do not want thumbnails of my address book.  This is quite ridiculous. My entire Applications folder is like 16 GB!  Thanks in advance.

    Hi
    It helped, thanks ! I am not able to get the local "On My Mac" account do display even after trying different permissions on the folder.
    For now, I just deleted the cached files. Will see if they are created again.
    This is a serious issue though and needs to be addressed, hope someone at Apple is reading this discussion. Is there a way to file a bug report with Apple?
    Thx.

  • How to delete or disable the jws-cache

    hello,
    i'm developing a jws-module that i don't want to be cached when tested.
    is there a way deleting the content of the cache or to disable it?
    thank you in advance, raffael vogler

    You can delete the content of the cathe if you use JWS-setting.
    (My JWS is Japanese, so deteil will be different.)
    1) Start JWS
    2) "File"-"Setting"
    3) click the "Detail"-tab
    4) You can see application folder option
    5) click "clear folders"
    -> delete all cathes
    Hope this helps,
    miki

  • Delete or disable ssl and https on exchange web url

    Hi,
    I disable by clear check box on Default Web Site --> SSL Settiings --> Require SSL
    and also inseret my domain name example: http://mail.myexchange.com/owa in Exchange admin center Console --> Servers --> Virtual Directory -->  owa
    and also i change     <add key="UseHttpsForWacUrl" value="true" />    to     <add key="UseHttpsForWacUrl" value="false" /> in C:\Program Files\Microsoft\Exchange
    Server\V15\ClientAccess\Owa\web
    But, after this steps for removing https on my url i can use it. and after loggin in https mode i can delete https on my url manually but did't work good and i get this error when i want see my email body "Error: Your
    request can't be completed right now. Please try again later."

    Hi S.Ali,
    Have you restarted IIS after changing all the settings?
    If not, please try to restart iis and check again.
    Best regards,
    Niko Cheng
    TechNet Community Support

Maybe you are looking for

  • Report title displaying for the secondary list

    Hi All, I have done a report interactive.The basic list is ALV and the secondary list is normal report.The problem in secondary list is it is diplaying the title "Dynamic list display" I am not getting from where this text is picking up and displayin

  • How can i get rid of Lion? and reload 10.6?

    My previous MBP's screen stopped working, and would be prohibitively expensive to repair. So i upgraded to a mid 2010 model 17"MBP, which i bought from Apple as a refurb -because it didn't have Lion on it , thus, my Adobe software and several other p

  • How do I transfer a sound file via TCP?

    I have a .wav file that I'm trying transfer via TCP.  Using LV 8.5, I modified the "Sound File to Output.vi" example to send the data across a TCP connection to a client vi.  But, I've encountered numerous errors along the way with trying to convert

  • Problem when compiling

    Hey , well whenever i compile this code :- public class Enum2 {     enum Dog {         sled(120),         yard(80),         lap(25);         int weight;         Dog(int weight) {             this.weight = weight;         int getWeight() {            

  • CCNA Wireless Exam Prep material

    Hi , Anyone know if there is any study guide from Cisco for the new version of CCNA Wireless exam ? I have found a quick refrence guide , an electronice format but that's about it. Thx .