Loading users into a new resource

Hi All,
My customer is already having sun identity management system in place with five resources configured.Almost 15000 users are there.
Now they want to add an XML Resource. This XML resource is a new resource and empty resource.
Please suggest me the different way of loading this 15000 users in this new resource.
Thanks
R

What exactly do you plan to do with the resource - reconcile, activesync, get/list users?I plan to provision / de-provision users, get users etc. All of this is working fine.
Why does reconcile fail? Custom adapters do not differ from that provided by Sun, so you may make them do all the things the built-in adapters do.When I run re-concile for a small batch of users, I see that re-concile completes successfully but it randomly misses some users. I am trying to debug this issue as well in parallel.
Thanks for the help so far!

Similar Messages

  • Bulk load users into Directory and Messaging at the same time

    Can I bulk load users into Directory and Messaging at the same
    time?
    <P>
    Yes, but you are not really loading users into the Messaging
    Server. The Directory Server contains all kinds of information about
    users, including information about their email. So if you want to
    load user information into the Directory Server, including the users'
    messaging infromation, you must install the Directory server first.
    Configure the directory server. Then install the Messaging Server.
    Then you can load users into both by loading an LDIF file with the
    user information.

    Hi,
    You can check the documentation: Multiple Copies of RMAN Backups ;-)
    When backing up datafiles, archived redo log files, server parameter files and control files into backup pieces, RMAN can duplex the backup set, producing up to four identical copies of each backup piece in the backup set on different backup destinations with one BACKUP command. (Note that duplexing is not supported for backup operations that produce image copies.)
    There are three ways to specify duplexing of backup sets when using the BACKUP command:
    Specify a default level of duplexing with CONFIGURE... BACKUP COPIESAll backup commands that back up data into backup sets will be affected if you use this option, unless you specify different duplexing options for a command using SET BACKUP COPIES or provide a COPIES option for the BACKUP command.
    Use SET BACKUP COPIES in a RUN block All commands in the RUN block will be affected, overriding any CONFIGURE... BACKUPCOPIES setting, except those where you provide a COPIES option as part of the BACKUP command.
    Provide a COPIES option to the BACKUP command For this specific BACKUP command, files will be duplexed to produce the number of copies you specify.
    Cheers
    Legatti

  • 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.

  • Yesterday I opened "Options" for the first time in FF4 to reset my home page. Now, Options loads ITSELF into a new tab sporadically, spontaneously. What gives?

    I had entered a custom home builders company page, which wouldn't load properly, but made a bunch of changes to my registry. I successfully ran CCleaner to clean up the registry, but when I loaded FF the site that caused me problems was now my new home page. I opened Options to reset home page to what it was before. That operation succeeded, but now every time I run FF, Options opens up spontaneously in a new tab.

    Hi again, I solved the problem! :)
    I deleted 2 files
    user.js
    prefs.js
    and bingo, all is well.

  • Just loaded CS4 into a new computer with MS 7 64bit

    I am now experiencing bizare colors for images opened in PS. Colors look normal in Adobe RAW window as well as Bridge, thumbnails and "export to web" window. I have been with Photoshop since version 3 and have never seen anything like this. I don't believe it has anything to do with mismatched profiles or monitor calibration. Everything is set to use Adobe RGB 1998 and the monitor is set to Windows RGB (I have tried the other settings also).  When the images are output to web or print they appear normal. (test images are old favorites that have been printed and viewed many times so I know what they are expected to look like)
    Images look as if one or more colors are missing entirely. A bright blue sky appears greenish-gray. Other colors are equally distorted. I tried reinstalling CS4 with no success (except the need to download 180 megs of updates for a second time!)
    Any thoughts?

    OK, sucess! Downloaded a new graphic driver for my brand new system and we are back in business. Strange that it only effected the open file in Photoshop and not any other graphic.

  • I need to change the apple Id from the previous user into my new user. I bought the phone from my girlfriend at work and didn't wipe it before I transferred all contacts and pictures.

    When I try to send text messages or to back up my info to the ICloud,everything seems to be linked to her email address and I can't get rid of it. Do I need to wipe it all out and re-install all my contacts and pictures all over again?

    Millie2012 wrote:
    ... Do I need to wipe it all out and re-install all my contacts and pictures all over again?
    That would definately be the way to go...
    Restore as New  >  http://support.apple.com/kb/HT1414

  • Issue using ADSI in powershell to load users from another domain into a group

    I am trying to load users into a domain local security group from another domain using ADSI and powershell. For users who have an existing foreign security principal I can load that without issue, but the users who do not have a foreign security principal
    I am unable to load.
    These work fine, assuming the group domain is fabrikam:
    $Group.psbase.invoke("Add",[ADSI]"LDAP://CN=$external_user_sid_who_has_a_FPN,CN=ForeignSecurityPrincipals,DC=fabrikam,DC=com")
    $Group.psbase.invoke("Add",[ADSI]"LDAP://$userDN,DC=fabrikam,DC=com")
    These does not:
    $Group.psbase.invoke("Add",[ADSI]"LDAP://CN=$externaluser_sid_who_does_not_have_a_FPN,CN=ForeignSecurityPrincipals,DC=fabrikam,DC=com")
    $Group.psbase.invoke("Add",[ADSI]"LDAP://<SID=$external_user_sid_who_does_not_have_a_FPN>")
    $Group.psbase.invoke("Add",[ADSI]"LDAP://<SID=$external_user_hex_sid_who_does_not_have_a_FPN>")
    Any help would be greatly appreciated.
    Thank you

    Thank you for your reply,
    I started with that thread and it ultimately recommends using the [ADSI]"LDAP://<SID=$hexsid>, this bind is not working for me. The page it points to for conversion of sid to hexsid is in VBS, but I have used the below powershell to duplicate its function.
    $sid = "S-1-5-21-2127521184-1604012920-1887927527-72713"
    $parts = $sid.Remove(0,6).Split("-")
    foreach ($part in $parts)
    $hex = ([Convert]::ToString($part, 16)).ToUpper()
    While ($hex.length -lt 8)
    $hex = "0" + $hex
    for ($i=1; $i -lt 5; $i++)
    $reverseEndian = $reverseEndian + $hex.substring($hex.length -2, 2)
    $hex = $hex.Remove($hex.length -2, 2)
    $hexSid = "0105000000000005" + $reverseEndian
    For example SID S-1-5-21-2127521184-1604012920-1887927527-72713 needs
    to be turned into raw hex sid 010500000000000515000000A065CF7E784B9B5FE77C8770091C0100 according to that article and
    then put in the ADSI bind like this: [ADSI ]"LDAP://<SID=010500000000000515000000A065CF7E784B9B5FE77C8770091C0100>". 
    When I put that bind in (with an actual sid and not an example sid) I get the following error:
    format-default : The following exception occurred while retrieving member "PSComputerName": "There is no such object on
    the server.
    + CategoryInfo : NotSpecified: (:) [format-default], ExtendedTypeSystemException
    + FullyQualifiedErrorId : CatchFromBaseGetMember,Microsoft.PowerShell.Commands.FormatDefaultCommand
    For users who are on another domain but already have a foreign principal name created, I can add them easily enough by converting their sid to the appropriate foreign principal name format. I haven't yet had any success adding someone who doesn't have a
    foreign principal name though, even after trying the solution referenced in the article.
    Thank you in advance for any help.

  • Load Files into stack failing after 1 image

    I've got 2 machines with Photoshop CC, both trying to load multiple images into a stack.  What happens is they load up the first image, and a layer called "load layers" and then it stops, never loading any more than the initial one.
    They're regular .jpg images as far as I can tell, is there anything else that could be causing an issue like this?

    It's completely replicatable, but only with that script, load files into stack, new images, new folder, new user, still doesn't work.  Is this why it's really strange to me.  I have no common ground between the computers as far as I know.

  • Copy part of a symbol into a new page

    Hello all-
    I'm trying to break down a rather large symbol.  If I highlight the second half of the symbol and copy it into a new symbol on a new page, it becomes all garbled to the point it is impossible to use it.
    I tried using Duplicate but don't know what it did other than it looked like it copied all the elements into the existing symbol?
    So,
    1. What does duplicate do and when would it be better than copy/paste?
    2. How can I copy a piece of an existing symbol to create a new symbol?
    BTW - The idea of copying the existing symbol and then removing the part I don't want, although sounds like the best way to do it, will not work as whenever I copy the symbol, or even try to load it into a new page, it becomes garbled as before (This is another discussion, "symbol corrupting on save?").
    James

    Make a comp of that segment and Export it to a New Track, or Export it to Selected track (your "master" track).
    http://help.apple.com/logicpro/mac/10/#lgcpb19adfa4

  • I re- start my ipad2 into a new one,to update into i0s7, why it is not working of loading?

    I re- start my ipad2 into a new one,to update into i0s7, why it is not working of loading? please help!!!

    The [c:set|http://java.sun.com/products/jsp/jstl/1.1/docs/tlddocs/index.html] tag is used to set a scoped attribute not request parameter. So when you write
    <sql:param value="${param.userid}" />You get null as there is no parameter named userid in the request. Try this
    <sql:param value="${userid}" />I would recommend you not to do database connectivity stuff in JSP, JSPs are the view layer of an application and they aren't supposed to be for doing business logic. Also since you are using a random userid, you might end up with multiple users with the same ID and IDs are generally supposed to be unique...

  • 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.

  • 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.

  • I have just used migration assistant to import photos (using an ethernet cable) from my PC. It has worked but they have gone into a new user on my MacPro. How can I merge them into the one user account.

    I have just used migration assistant to import photos (using an ethernet cable) from my PC. It has worked but they have gone into a new user on my MacPro. How can I merge them into the one user account.

    How many pictures (or how many bytes) are we talking?  Now that the pictures are imported one way to cross users is to use a removable drive (although large volumes of files preclude this).
    The other is to login as the user where the pictures are, then copy them into the public drop box of the user where you want the picture.
    The arrow is showing (in ths example) copy files from the Pictures folder for my user to the guest user accounts public dropbox.  When you do this you may have to authenticate and you won't be able to see the results of the copy until you log in as the other user.
    All users are in the folder "/Users/"

  • User gets error message when logging into a new pc "Outlook is using anold copy of your .ost"

    We have a user who needs to login to multiple pc's. When she logs into a new pc and opens Outlook she gets the error.
    "Outlook is using an old copy of your Outlook data fuile (.ost). Exit Outlook, delete the file, and restart Outlook. Anew file will automatically be created the next time you initiate a send/receive."
    We manually delete the file and a new one is created but we would like to find a better resolution to this issue. Also we have just recently migrated to O365. any help with finding a better resolution would be appreciated. Thanks.

    Hi,
    I'm marking the reply as answer as there has been no update for a couple of days.
    If you come back to find it doesn't work for you, please reply to us and unmark the answer.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Music on my iPod that I cannot load/sync into iTunes on my new computer

    The original computer that I loaded my iTunes app and db on crashed hard and I could not retrieve the data or deauthorize it. I have been trying to setup iTunes on my new computer. Problem - I have music on my iPod that I cannot load/sync into iTunes on my new computer.

    Click here and follow the instructions.
    (34700)

Maybe you are looking for

  • Multiple Apple IDs on One Mac

    We set up macs for our faculty and staff. We, as computer support, have our own Apple ID and install some basic software that was, i.e. Microsoft Remote Desktop. Our users have their own login and can associate that with their Apple ID. But then they

  • Java.nio read/write question

    Hello, I just started to learn the java.nio package so I decided to make a simple Echo server. I made a client which reads a line from the keyboard, sends it to the server and the server returns it. It all works except one little detail. Here's littl

  • I -Mac 24 inch LCD display

    I would like to know the best resolution for (or default I guess) for the I-MAC 24 inch LCD display? Today I wanted to change the brightness as my eyes were feeling tired and in the process of doing too many things at once, I guess I inadvertently ch

  • OpenCL - used (if yes, where) or not?!

    Hi, as you know FCX needs OpenCL GPU to run. But i looked "into" Compressor + FinalCutX, by looking what Frameworks they use (load) and also let an OpenGL/OpenCL debugger look after OpenCL. Also checked GPU load when doing FCP tasks - gpu was NOT mor

  • ORA-12560,12514 Error

    Hi... I have Windows2000 Professional and Oracle 8.1 Enteprise edition installed on my m/c. But when I try to connect to databse it shows me ORA-12560 TNS: Protocol Adapter Error and ORA-12514 TNS: Service name error... I set primary domain as precis