Move objects, grants etc of a user into a new user

Hi,
I have oracle10g running on Linux. i have lots of users with their own objects, and grants and permissions to other users objects.
i have created a new user B and i need to move all the objects, grants, permissions etc of old user A into this new user B. then i want to drop user A.
so from now onwards this new user B should be able to do everything user A was doing.
Can someone guide me please.
Thanks,
Philip.

i did the exp/imp from userA to userB.
all the objects got copied.
but system priviliges, object privileges did not get copied to userB.
is there a way where including objects, all the privileges, grants can be copied too from user to another user?
Thanks,
Philip.

Similar Messages

  • How to move from 3 separated itunes music folders into one new hard discs??

    So : i bought a new external 6TB thunderbolt hard disc (for extra speed for my huge library) and i copied from 3 other 2TB hard disc into there. I named the sub folder the same like an original. I thought it is enough to determine the new place of each in "media folder locations" and updated.... but its not working
    What should i do? How will see the itunes these music folders like an originals??? I dont want to reimporting, because  i dont want to loose  all of my "date added, played etc" informations.
    If I'm doing three  partitions with folders, as were the old ones will work?
    ..or should i rewrite the iTunes Music Library.xml with text editor?
    pls help me and thx for answering!!!!!
    macbook pro/ osx 10.8.4 / itunes 11.0.4

    Best to give the new iPad a different name. I assume you have purchased an iPad 2 or the next generation iPad which is just called "iPad"? If so, you can name the iPad 2 "Kens iPad 2" or "Kens iPad 3" since the new iPad just introduced is the 3rd generation.
    The first time you connect your new iPad to iTunes on the computer used for syncing your existing iPad, you will be prompted to transfer the backup for your existing iPad to the new iPad, or set up the new iPad as a new iPad. Both must be followed by a sync with iTunes.
    Each device has its own sync preferences with iTunes, which can be the same or different for each device synced with the same iTunes library and computer.

  • Transferring iCal dates, info, etc from old drive into a new iCal ?

    My G5 died finally and I had to replace it w/a new drive. Apple Genius was able to recover all my old files thank god but I am now having the unfortunate task of trying to get everything back in order. In particular iCal. I see all the dates and stuff I'd like to just drag and drop but that's not working. What advice can someone give for trying to update older information from iCal, w/out having to copy/paste manually everything little thing? I want to get everything in order before I use Time Machine to back up everything up on this new drive.
    THANKS!!!

    You can do two different things that have worked for me in the past. You can export the calendars you want (File-->Export...) Then just import that file on the new computer.
    Or you can back up iCal (File-->Back up iCal...) then use that file to restore iCal in the new calendar. When I did a restore in my new calendar it did not have ANY info so I don't know if a restore completely replaces everything in the current calendar files as well...but if you are starting fresh you may be OK>
    Hope that helps.

  • HT1766 What's the easiest may to move contacts,app etc from my 4 to my new 4s thank

    Got new 4s ,what is the best way to transfer all data from my oly 4 thanks

    See http://support.apple.com/kb/HT2109.

  • I have a copy of my iTunes data and I'm looking to restore it all back into a new version of iTunes reloaded after a hard drive crash.  How do I do this?

    After having a hard drive crash, I've reloaded Windows 7 and all of my applications on a new hard drive.  I have also downloaded and installed a new version of iTunes on my computer.  I now want to restore all of my iTunes tracks, videos, movies, books, podcasts and all my playlists into the new version of iTunes from a back up of all of my previous hard drive before it crashed.  I have tried importing the data but iTunes drops all kinds of data (artist names, album names, track number, etc.) and have to now manually go through all of my iTunes data (18,000 tracks) to restore the data.  The data consists of a combination of purchased tracks (approx. 6,000) and my own personal CDs copied into iTunes.  I need help badly here as I'm lost on how to proceed.  Thanks.

    Hi Toboggan,
    If you are looking to restore your iTunes data from a backup, you may find the following article useful (while it is focused on moving between computers, many of the steps should also apply to your situation):
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    Regards,
    - Brenden

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

  • I just changed the OS from Vista to Windows7.  I have a folder on the same computer with the old iTunes library.  I installed a new version of iTunes from scratch.  How do I move my music library, etc from that backed up folder into the new iTunes folder.

    I need help with moving my music library. 
    I recently upgraded the OS on my computer from Vista to Windows7.
    During the process it copied my iTunes library to a folder on this same computer (marked it Windows.old)
    Once the OS was done, I installed a new copy of iTunes on the Windows7 but it now has a blank library (folder)
    How do I move my music from its current folder location (on this same computer) into the new iTunes library folder ???
    There don't seem to be specific instructions on how to do this. 

    Skydiver119 wrote:
    My situation may be different from yours since all mu music is ripped from cd's not bought from iTunes, but I would think the premise is the same.
    Doesn't matter what is in your library.
    When I moved computers I literally dragged and dropped the music where I wanted it to be. THen when I opened iTunes I imported the files back into iTUnes
    This creates a new library with all the same items but you lose a lot of info: Ratings, comments, date added, custom EQ, playlists, etc.
    If you simply copy the entire /Music/iTunes/ folder, it is the exact same library, not a new library. No info is lost.

  • How to move an old iTunes folder into a new user account?

    Hi there, so I have a 98Gb iTunes library and it was sitting on an older version of an iMac (2006 OSX 10.6.8  iTunes 11.4).  Realised it would be cumbersome to transfer to my newer iMac (2014 - OSX 10.9.5 iTunes 12.1.2.27) so I used the migration assistant to transfer everything across.  Only problem  is now I have 2 user accounts for myself on the new iMac and all I want to do is consolidate my iTunes library into one, but am struggling to move the iTunes folder directly into the newer user account on the new iMac.  I keep getting a "you do not have permission to move this".  I've tried both passwords to each account but still it won't move the folder.  Any suggestions or directions would be greatly appreciated.

    SlippySlope wrote:
    Were you saying that you have two user accounts (one one the old Mac and one on the new Mac) or two Apple IDs with your music?
    Read the original post. The user used Migration Assistant to copy files from an old computer to a new one. This creates a new computer account with the old content. The user then had two accounts on the new computer with content the user wished to merge.

  • How can I move my iMovie library (incl. events etc.) between users on my iMac?

    I just transferred my iMovie material from my old iMac to my new one using the Migration Assistant.  But now I want to move the transferred material from one user on my new iMac to another user (on the same iMac).  How can I do that? 
    What I tried so far was to put the Movies folder (of User "A") into the Public folder (of User "B") and then copy the material from the Public folder (of User B) to the Movies folder (of User B).  The material then didn't show up in iMovie though.  I then tried importing the material through iMovie but that didn't work either.
    Thanks for your help!

    Are all imovie projects working completely OK on your new machine under your user name?  No missing clips?  I would not go any further unless this is the case.
    If all is OK:
    I would first consolidate library media.  This makes sure that the library contains a copy of everything required and no links (for example to audio clips in user A's iTunes library which won't be accessible to user B).  See:
    http://help.apple.com/imovie/mac/10.0/#mov882dee351
    (Repeat for other libraries if you have any)
    From inside iMovie create a new library on the user B public folder and copy all events into it (is this what you did?). 
    User B then has to log in, launch iMovie select Open - Library - Other, navigate to their public folder then create a new library in their Movies folder and copy all events across.
    Do you specifically want the library/s to be only available to user B?  If not, libraries located on a volume with 'ignore ownership' set will be accessible to all users.
    Please not that this is what i think should work in theory but I must admit I have never tried messing with multiple users and I could n't find any documentation on how iMovie handles this.  
    Maybe someone else with real experience of doing this can chip in?
    You need to have lots of disk space available since the library may grow considerably in size when you consolidate it and then you are going to be temporarily triplicating it.
    Geoff.

  • After creating a new user account, how do I move my files into the new user?

    I have an issue where my 'Desktop/Screensaver' prefs seem to be corrupt somehow. When I click on that icon in System Preferences, it stalls and I get the spinning ball, thus resulting in a force quit. After reading a Mac Format magazine where someone wrote in with a similar issue, they said to trash various prefs (did that and made no difference) and if that didn't work, try creating a New User account (therefore creating brand new system prefs) and move your stuff over.
    Well, I've created the New User account, but I can't figure out how to move/copy my stuff into the user folders. After copying and attempting to move stuff in, I see folders with a red circle with a white line through it (like a 'no entry' sign).
    Any clue as to how this can be done? All I'm trying to do is to reinstate the system prefs so they are not corrupt anymore on my log-in.

    No. Not the main Library folder. Make absolutely sure you are in the Home Library folder and not the main Library folder.
    Your Home Library folder is hidden in Lion. To get to it, in the Finder menu, select GO and hold the option key down. Select Library in the submenu. The Finder window will open in your Home Library. This is where your user prefs are stored.
    Once there, you will see the Preferences folder. Open it up, select all items within it and move them to the trash. You will need to restart in order for the new Finder preferences to be recreated.
    Once you restart, then you will be back to the default preferences to the system and all applications. And yes, it will affect all settings including your Dock, just as logging into a new user. You will have to reset everything there also.
    If you wish to do a selective method, instead of deleting all preferences, try deleting the one associated with your problem. Screen saver problems should be affected by the system preferences, so try deleting this:
    com.apple.systempreferences.plist
    com.apple.systempreferences.plist.lockfile
    Note that when you delete system file preferences, a restart will be required. For applications, just quit the application before trashing preference files.

  • HT2845 I am using a Magic Mouse on my MAC computer but when I drag object/files etc it only move them a inch or so and then I can not drag the object anymore, help?

    I  am using a Magic Mouse on my MAC, when I drag objects/files etc after dragging the object for an inch or so the object stops and I can not drag it any further.
    Has anyone a solution, I have checked the batteries etc.

    I  am using a Magic Mouse on my MAC, when I drag objects/files etc after dragging the object for an inch or so the object stops and I can not drag it any further.
    Has anyone a solution, I have checked the batteries etc.

  • How do I move my iTunes account to another user name on the SAME computer?

    Hi,
    My kid was the first in my family to get an iPod. When we created her account, since she is young, I put it on my laptop under my user name. Months later, I decided to get an iPod and when I went to set up an account, it wouldn't let me. My neice told me that I had to set up a new user name account on my computer for the new itunes account. I did this, but now I find that this is TOTALLY inconvenient. My computing is done under one user name and, yet, to sync my iPod I have to log out of all of that and go into the other user name. I HATE this -- had I realised this would be such a pain in the neck, I never would have set up my daughter's account under my user name. Is there a way that I can move my itunes account to MY user name and move my daughter's to the other? Can I have them both under one user name? Thanks for any help/advice

    Welcome to AD!
    Each windows user has an itunes database file that has ratings, playcounts, etc.
    It is named iTunesLibrary.itl
    So in addition to putting the music in a shared location as Neil suggests, you need to swap your ITL files from each account.
    Here is a good background article on that, you are using method 1. My advice is to stay far away from method 3, it's too easy to forget which ITL file itunes last used.
    You could also switch to method 2. I used that for several years until my husband started using iTunes and I did not want his play counts in my library.
    http://support.apple.com/kb/HT1495

  • Create,move Oracle Retail Merchandising system Database users to IOD

    Hi All,
    RMS v12.0.6; OS: AIX 5.3 64 bit
    Could anyone please let me know the following:
    1.What's the process to create,move Oracle Retail Merchandising system Database users to IOD?
    2.In R12, is "appsweb.cfg" located in FORMS_WEB_CONFIG_FILE is used for forms server running when forms server runs in default mode - servlet mode?Is appsweb.cfg ever used in R12 for any functionality,changes to be made for any configuration etc., is the objective of the question..
    Thanks for your time if someone could clarify on the above two queries..
    Regards,

    The FULL parameter indicates that a complete database export is required. The following is an example of the full database export and import syntax.
    The user must have the privielge of EXP_FULL_DATABASE
    expdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
    impdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=impdpDB10G.logGO through below linkfor more details...
    http://www.oracle-base.com/articles/10g/OracleDataPump10g.php
    Regards
    Umi
    Edited by: Umi on Feb 4, 2011 2:27 AM

  • Grants given to a user give to another as well...

    How is it possible the grants given to a user , given also to another....
    For example :
    connect scott/tiger;
    grant select on dept to x;
    grant insert on dept to x;
    Many thanks,
    Simon

    As yingkuan points out, the table you're looking for is, presumably DBA_TAB_PRIVS.
    I would point out, though, that 9 times out of 10, writing a script to duplicate the grants for a user from DBA_TAB_PRIVS is a bad idea. The proper approach is almost always to create a role, have the table owner (SCOTT in your last post, USER_A in the original post) grant privileges on the tables to the role, and grant the role to the end users. That is far, far easier than trying to keep grants in sync among multiple users.
    Also, be aware that DBA_TAB_PRIVS only accounts for object-level privileges, not system-level privileges and that it only accounts for privileges granted directly to a user, not those granted to a role (DBA_SYS_PRIVS, ROLE_SYS_PRIVS, ROLE_TAB_PRIVS, ROLE_ROLE_PRIVS, and DBA_ROLE_PRIVS would all come into play for those).
    Justin
    Justin

  • Grant details required for user and schema

    Hi
    I have Oracle version - 10.2.0.4.0
    We have Schema A (Lot of objects exist) and User B (No objects exist - acts as application user to access objects in other schema).
    I have listed below doubts.
    1) I want to know the method to find the list of users have access to objects in Schema A and privileges granted for the objects in Schema A
    2) I want to know the method to find the list of grants provided to the schema objects to the user B

    user1368801 wrote:
    Thanks ajallen.
    It really helped me.
    one more question. I think DBA_TAB_PRIVS gives details for tables only right.
    What about other objects like procedures, views etc. Go back to the Reference Manual and re-read the description of DBA_TAB_PRIVS. Re-read the specific description of TABLE_NAME.
    >
    Actually I am exporting 3 schemas (A,B,C) from production and importing them to test environment (A1, B1,C1) using fromuser and touser option.
    Now I have to properly remap all the privileges, grants, synonyms etc.
    There are so many objects and I am wondering how to remap properly.
    It may be simple, as a newbie, your direction will be more helpful

Maybe you are looking for