Trying to delete a user schema

Hello
i want to delete a schema but if i try oracle say's no valid XDB-Document.
How can i delete the schema?
Bastian Fiebig
(Beginning XDB Developer)

This happened to me when I manually deleted objects generated during the schema registration.
I have now a couple of schemas registered in the database that I cannot delete anymore.

Similar Messages

  • I am trying to delete a User but its nearly taking 24 hours and still doing it

    Hi guys i am new to my Mac book Pro when i migrated my old laptop to this mac book it set up a new user i am now trying to delet this user and its been nearly 24 hours and still says deleting account and i can't seem to do much until its sorted hope you can help

    It takes only a few minutes even if you are delete the User' files.

  • I'm trying to delete multiple users through my network loaner. how do i do that?

    I'm trying to delete multiple users through my network loaner. how do i do that?

    Navigate to Settings>iCloud>iCloud Photo Settings and then select Turn Off Photo Sharing and then reenable it.

  • I am trying to delete a user on my start up page but do not know his password

    I am trying to delete a user on my start up page and do not know his password

    You don't need to know the password. Log out of the account, then log in as an administrator and delete the account in the Users & Groups preference pane. You will need to click the lock icon and authenticate first.

  • I am trying to delete a user account but attempt locks up system prefs

    I have been trying to delete a user account in 10.9.1 (Mavericks) on a 2009 Mac Pro. The problem is that System Prefs never completes the "archive account" and when check which processes are using up CPU time I find that writeprefs is pegged at 100% and has stayed at that level for seven hours plus. Of course the account is never removed and the only way of restarting the machine is to force quit system prefs after which the reboot works. Any ideas? Thanks in advance.

    Do you really need to archive the user folder?
    linc, that would be desirable but not absolutely essential.  And, thank you for your swift response!

  • Trying to delete two user accounts on my mac book air, it has been deleting them for two days and I am un able to turn my computer off, what should i do?

    How do I go about either stopping a delteing user account that is in action, or How do I reboot my computer? I am stuck not sure what to do! I am in the process of deleting two user accounts but I am stuck and can't turn my computer off reboot, or reverse it. Anyone have any ideas for me?

    Press and hold the power button for a few seconds until the power shuts off, then release, wait a few more seconds, and press it again briefly to restart.

  • Can't find user account when trying to delete

    I'm using an iMac computer.
    And the problem I'm having is the following:
    I'm trying to delete an user account from my computer following the steps from apple.
             http://docs.info.apple.com/article.html?path=Mac/10.5/nl/8163.html
    So at step 3 they say I have to click on the user account I want to delete.
    But I cannot see the user account in the list.
    It is the only account with an password, but that person doesn't know the password even with the clues for it.
    Besides that I currently don't have the option to contact him.
    I am the main user so I hope it shouldn't be a problem.
    Does anyone know a solution for my problem?
    Or did anyone had the same problem?
    My thanks in advance!

    'Other' is the Root account - it shouldn't be enabled.
    From any admin account -
    How to disable the root user
    Mac OS X v10.6 and later
        1.    From the Apple menu choose System Preferences....
        2.    From the View menu choose Accounts.
        3.    Click on the lock and authenticate with an administrator account.
        4.    Click Login Options....
        5.    Click the "Edit..." or "Join..." button at the bottom right
        6.    Click the "Open Directory Utility..." button.
        7.    Click the lock in the Directory Utility window.
        8.    Enter an administrator account name and password, then click OK.
        9.    Choose Disable Root User from the Edit menu.

  • What is the orange tick on the icon attached to a "user"? I am trying to remove 2 users and I think the tick is preventing me from deleting.

    When transferring from an older imac, to my new one with mountain lion, I was persuaded to nominate about 3 account names. I really just want the whole lot under the one a/c name. So I am trying to delete 2 user names, but I think the orange ticks prevent me from deleting. Each of these user names is qualified by the description "standard". Help.......I cant find help anywhere else.

    >>What is the orange tick on the icon attached to a "user"?
    It means that the system thinks they're logged in.

  • Delete a user from a table whose name is a foreign key in other tables

    Dear All;
    I am trying to figure out an easy way to do this. I just recently took someone application who utilized 500 tables. I am trying to delete a user from a table called member_table. However, I am having problems doing so because the user name is a foreign key in other tables which has a relationship with this member_table. I really can't naviagte through all 500 different tables and start deleting the user from each table . hence, I would like to figure out a way to delete the user from the member_table without getting the error message
    ORA - 02292 "Integrity Constraint (....) violated child record found

    Unless you want to find and re-create all of the FK's that point to that field so you can make them ON DELETE CASCADE (note it is the FK not the PK that has that attribute), you will need to either delete that member id from each of the child tables individually or update each one individually to either null or some valid value in member_table before you can delete the id from member_table.
    You can find all of the tables, and the corresponding column_name that have an FK relationship to memeber_table with the following:
    SELECT c.table_name, col.column_name
    FROM user_constraints c, user_cons_columns col
    WHERE c.constraint_name = col.constraint_name and
          c.r_constraint_name = (SELECT constraint_name
                                 FROM user_constraints
                                 WHERE table_name = 'MEMBER_TABLE' and
                                       constraint_type = 'P') and
         c.constraint_type = 'R';If there are a lot of these, you could use something similar to generate the set of delete/update statements that would be needed.
    John

  • Problem in deleting the user

    when iam trying to delete the user from subone directory server
    it is giving the following exception
    Insufficient 'delete' privilege to delete the entry
    how to set the privileges in sunone directory server.please send as it is very urgent for me

    What is the ID you were using to remove the user? If regular user, maybe it's the ACI of that entry prevented you from removing that entry.

  • Delete a user account

    I am trying to delete a user account but the "-" button is not clickable - help!

    kmamula,
    are you logged in as your administrative user? Is the padlock in the lower-left corner unlocked?

  • Drop a  user/schema

    Under a user/schema (such as tester), I created tables, indexes, packages, stored procedures, functions, etc.
    1)Now If I issue a statement for dropping the user/schema, in order to delete the user/schema from the system, will those said tables, indexes, packages, stored procedures, functions, etc, be all deleted from the database system, too?
    2)My understanding that the user and the schema are actually the same thing. So to drop the user tester will also drop the schema tester, or vice versa. --Is this statement correct?
    Thanks

    scott,
    It's an eternal question : difference between schema and user.
    You create a user to connect in your db.
    This user, if granted, can read objects from others users;
    If this user, if granted, create any objects (tables, views, etc...), he create a schema. A schema is a set of object for which the user is the owner.
    Also, if you drop a user, you drop all his objects... and so his schema. We don't say that you drop schema, but you drop user, it is a little nuance...
    Nicolas.

  • Delete a user that have versioned file

    I have tryed to delete a user from iFS repository that have versioned a file. I have changed a owner to another user but still received an error on trying delete a user. Does exist any way to delete this user without deleting a versions of the files ?

    moving to top again

  • Can't delete some users

    Running GW Data Sync 1.2.5.250. We use an LDAP group to add/remove users in our Data Sync server. I removed 15 users from the group and around 6 of the users were deleted from Data Sync, but there are still 9 users that are no longer in the group that are still on the Data Sync server. I have tried adding the users back to the group and removed them from the group but their accounts still remain in Data Sync. I tried manually deleting the user in Data Sync, get confirmation to delete the user, and the user is still on the list of users in Data Sync. I have also used an LDAP browser and checked the members of the group to make sure the users I have deleted from the group in eDir are no longer in the group. Has anyone else experienced this problem? Any suggestions on how to fix?
    Thanks,
    RSarno

    Originally Posted by tdharris
    Hello! I'm one of the two that created dsapp. As general advice steer clear of the delete and remove references option and go with removing regularly from the WebAdmin interface first. Then proceed to use the script to remove user db references only. The reason for this is because the script to delete the user properly has to restart the configengine service in order for things to be properly picked up in the database. Unfortunately I am not the developer, otherwise I'd come up with a much more robust solution.
    So it could be hanging here for one of two reasons:
    1. There was a problem restarting the configengine service. (rcdatasync-configengine restart)
    -- This typically works and the database change we made to set the user to be deleted is picked up. Sometimes it takes a little time for it to realize a user needs to be deleted. This is the nature of not interacting with the application the way it's designed to be interacted with unfortunately. So perhaps configengine never restarts right, or the change isn't realized in the database.
    2. It will also wait until the mobility connector reports the user has been deleted. The delete and remove references option simply waits until it can no longer find the user in a particular Mobility database table, and then proceeds to remove any leftover database references. So it's also possible the user is still in the process of being deleted and it is still waiting or there was a problem removing the user and it's still in the table where it shouldn't be.
    So my advice is to remove the user first from WebAdmin, give ample time for the user to be removed (depends on how much data the user has), perhaps say 5-10 minutes or so will be more than adequate usually. This allows for DataSync/Mobility to remove the user according to it's own protocols. Then proceed to remove just the leftover database references using the dsapp script. The steps to remove just the db references are provided in the following TID:
    TID 7008852 - How to completely remove all references of the user from Mobility
    Hi,
    Thank you for creating the script! I managed to remove the user using this TID: Support | Unable to remove user from DataSync
    Do you have any idea how I could use you script with spaces in the username? The reason for the spaces is that Mobility is linked to our Active Directory and uses the cname instead of the samaccountname. When I logon to the Mobility webadmin, I also have to logon with my full name instead of my non-spaced username.
    Thanks.

  • Directory Manager can not delete an user.

    Hi Folks,
    We are trying to delete an user from LDAP directory, and when delete it, come up a message :
    "nullnetscape.ldap.LDAPException: error result (1); Operations error"
    We are doing this task with Directory Manager.
    Has anyone an ideia what is going on ?
    Thanks in advance.

    How exactly are you trying to delete the user - through console - through some java code etc?

Maybe you are looking for

  • Spectrum digital DSK5416 driver setup gives an error when test wizard is run.

    Please help us with the following problem we are facing: 1.    Spectrum digital DSK5416 driver setup gives an error when test wizard is run. A snap shot of the same has been attached. 2.    The A/D module doesn't pickup microphone signal or an audio

  • UDF is not updating in journal Entry rows

    Hi Experts, I have created an UDF in journal entry and trying to insert the values in it based on the transactions. But the UDF is not getting updated through coding where as same query if i run in the SQL database it is getting executed properly and

  • T430s Issues with Power Manager

    Just to note, I don't have the big issue with the DCC and FCC not matching up that seems to be plaguing many of the T430s users.  I do have a Panasonic battery, FYI. So I got my T430s late August and for the past few weeks, I've been noticing that I

  • Outlook sync is driving me crazy

    I've been trying to get Outlook and iPhone to sync reliably since I got it. Initially it synced correctly. Then it stopped syncing calendar and contacts (it has never synced email). I have been through the technical note on how to fix sync problems.

  • .......Clsoing a Form  Using " X " button

    Hi. May i know how can i disable the X window button at the right corner so that user cannot exit the window from that button. I want user to exit only from the exit button i provide to him, not any other button. i have tried to set CloseAllowed prop