I'm trying to migrate data from a server to a new one with the file permissions of the files of users and records lost.

original title: robocopy

I'm trying to migrate data from a server to a new one with the file permissions of the files of users and records lost. So far, that's what I did, I used \\server1\share \\server2\share/sec /mir robocopy and robocopy \\server1\share \\serve2\share/e/s /copyall. It seams like they copied all files with the permissions of the user for the files, but not files. For example, if a user makes a folder with the files in the folder appear them have permissions appropriate for them but not the root folder or subfolders, they did... How can I fix this and what is the difference between / s /mir and/e/s /copyall?

Hello

You can find the Server forums on TechNet support, please create a new post at the following link:

http://social.technet.Microsoft.com/forums/en/category/WindowsServer/

Tags: Windows

Similar Questions

  • Difficulty from a database and the connection with the name of user and password

    Hello

    I have an oracle 9i installed on RHEL4. But I got the following errors when you try to connect by using SQL. So I'm not able to connect to the DB, or start the DB.

    * $ sqlplus /nolog *.

    SQL More: Release 9.2.0.1.0 - Production on Tue Nov 11 14:23:13 2008 *.

    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.

    SQL > connect / as sysdba
    ERROR:
    ORA-01031: insufficient privileges


    SQL > connect system/manager
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux error: 2: no such file or directory


    SQL > connect system/manager@xxxxx
    ERROR:
    ORA-12541: TNS:no listener

    The last error says no listener. But according to me, the entries in the file /home/oracle/app/product/920/network/admin/tnsnames.ora correct and valid. I gave the HOST entry as the IP address of the server area.

    Y at - it suggestions or tweaks to get rid of these.

    Thanks in advance.

    Try unset TWO_TASK

    at the beginning the sqlplus or try

    SQLNET. AUTHENTICATION_SERVICES = (ALL)

  • Need assistance to migrate data from XML to oracle table.

    Hey Odie,

    Im trying to insert data from an xml file into a table.

    My XML file is as follows.

    <? XML version = "1.0" encoding = "UTF-8" standalone = 'yes' ?>

    - < TransferXML >

    < BatchName > HJ69240 < / BatchName >

    < BatchStatus > Park < / BatchStatus >

    - < SubBatch >

    < SubBatchName > UQ80288 < / SubBatchName >

    < SubBatchStatus > project < / SubBatchStatus >

    - < SubBatchDetail >

    < Ingredient > I3308 < / > of theingredient

    < DispensedQty > 0,0 < / DispensedQty >

    < MDispensedQty > 4.0 < / MDispensedQty >

    < / SubBatchDetail >

    - < SubBatchDetail >

    < Ingredient > I3261 < / > of theingredient

    < DispensedQty > 0,0 < / DispensedQty >

    < MDispensedQty > 3.5 < / MDispensedQty >

    < / SubBatchDetail >

    - < SubBatchDetail >

    < Ingredient > I3235 < / > of theingredient

    < DispensedQty > 0,0 < / DispensedQty >

    < MDispensedQty > 0,5 < / MDispensedQty >

    < / SubBatchDetail >

    - < SubBatchDetail >

    < Ingredient > I3142 < / > of theingredient

    < DispensedQty > 0,0 < / DispensedQty >

    < MDispensedQty > 0,2 < / MDispensedQty >

    < / SubBatchDetail >

    </SubBatch>

    - < SubBatch >

    < SubBatchName > ZB97913 < / SubBatchName >

    < SubBatchStatus > incomplete < / SubBatchStatus >

    - < SubBatchDetail >

    < Ingredient > I3309 < / > of theingredient

    < DispensedQty > 0,75 < / DispensedQty >

    < MDispensedQty > 0,0 < / MDispensedQty >

    < / SubBatchDetail >

    - < SubBatchDetail >

    < Ingredient > I3436 < / > of theingredient

    < DispensedQty > 0,0 < / DispensedQty >

    < MDispensedQty > 0,05 < / MDispensedQty >

    < / SubBatchDetail >

    </SubBatch>

    <Final>false</Final>

    < / TransferXML >



    With the help of your previous posts I've migrated data from this xml file in a table that works perfectly well. But these data repeats instead of giving 6 lines that his return 12 lines guide please.


    CREATE TABLE XXBATCH AS

    SELECT A.BatchName, A.BatchStatus, B.SubBatchName, B.SubBatchStatus, C.Ingredient, C.DispensedQty, C.MDispensedQty, A.FINAL

    OF (XMLTable ('/ TransferXML'))

    from xmltype)

    BFILENAME('APPS_DATA_FILE_DIR','HJ69240.) XML')

    nls_charset_id ('AL32UTF8')

    ) COLUMNS

    BatchName VARCHAR2 path (99) "BatchName.

    , Path of the BatchStatus VARCHAR2 (999) "BatchStatus.

    Path VARCHAR2 (99) final 'Final')),

    (XMLTable ('/ TransferXML/SubBatch '))

    from xmltype)

    BFILENAME('APPS_DATA_FILE_DIR','HJ69240.) XML')

    nls_charset_id ('AL32UTF8')

    ) COLUMNS

    Path of SubBatchName VARCHAR2 (99) "SubBatch/SubBatchName".

    , Path of the SubBatchStatus VARCHAR2 (99) "SubBatch/SubBatchStatus".

    (B)

    (XMLTable ('/ TransferXML/SubBatch/SubBatchDetail '))

    from xmltype)

    BFILENAME('APPS_DATA_FILE_DIR','HJ69240.) XML')

    nls_charset_id ('AL32UTF8')

    ) COLUMNS

    Path of the ingredient VARCHAR2 (99) SubBatchDetail/ingredient"."

    , Path of the DispensedQty VARCHAR2 (99) "SubBatchDetail/DispensedQty".

    , Path of the MDispensedQty VARCHAR2 (99) "SubBatchDetail/MDispensedQty".

    (C)

    I didn't test your query, but apparently it's because you have access to the same file three times instead of spend one XMLTable to another correlated nested groups.

    Better, this should work:

    SELECT A.BatchName

    A.BatchStatus

    B.SubBatchName

    B.SubBatchStatus

    C.Ingredient

    C.DispensedQty

    C.MDispensedQty

    A.FINAL

    FROM XMLTable ('/ TransferXML')

    PASSAGE xmltype (bfilename('TEST_DIR','HJ69240.xml'), nls_charset_id ('AL32UTF8'))

    Path of COLUMNS BatchName VARCHAR2 (99) "BatchName.

    , Path of the BatchStatus VARCHAR2 (999) "BatchStatus.

    , Path VARCHAR2 (99) final "Final."

    , Path of XMLTYPE «SubBatch» SubBatchList

    ) AT

    , XMLTable ('/ SubBatch')

    PASSAGE SubBatchList

    Path of COLUMNS SubBatchName VARCHAR2 (99) "SubBatchName".

    , Path of the SubBatchStatus VARCHAR2 (99) "SubBatchStatus".

    , Path of XMLTYPE «SubBatchDetail» SubBatchDetailList

    ) B

    , XMLTable ('/ SubBatchDetail')

    PASSAGE SubBatchDetailList

    Path VARCHAR2 (99) ingredient of COLUMNS "Ingredient."

    , Path of the DispensedQty VARCHAR2 (99) "DispensedQty".

    , Path of the MDispensedQty VARCHAR2 (99) "MDispensedQty".

    ) C

    ;

    Post edited by: odie_63

  • What is the best strategy to migrate data from Windows to one Mac to another? I use Parallels Desktop to run Windows on my current Mac but want to use Bootcamp on my new.

    What is the best strategy to migrate data from Windows to one Mac to another? I use Parallels Desktop to run Windows on my current Mac but want to use Bootcamp on my new.

    If it is only the data (not apps) I use Dropbox. It turned out to be the best way to move things between the side Mac and the bootcamped Windows of my iMac side. I don't see why it would not work to move data from a virtual machine installation of Win to a BootCamp installation.

  • I installed Windows Live Mail and now am trying to migrate mail from my laptop which has been using Vista and Windows Mail.

    I just bought a new desktop computer using Windows 7.  I installed Windows Live Mail and now am trying to migrate mail from my laptop which has been using Vista and Windows Mail.  I need help please.

    The Vista system export your contacts and send to CSV files, then import them into Windows Live Mail.

    Good luck.

  • install Oracle 12 c and migrate data from 9i to 12 c on Solaris

    HI: this is a primary control to check IAM step by step.  I need to migrate the server Oracle 9i (Solaris) to 12 c (Solaris) to the customer request. I have the instruction of installation YES from the team, the draft plan is:

    1. install Oracle 12 c binary on Solaris Server

    2 exp/imp, method to move data to 12 c 9i.

    Should I create a database "empty" by script until I use the exp/imp method to migrate data from 9i?  Or, is it better to use the option 'create the single database instance' in YES during the installation of 12 c, then exp/imp?  How about the "plug-in database" or the "CBD/PDB' concept to 12 c?  It's still new and I am not master familiar with it, that I have to use all "CBD/PDB' 12 c or not?

    Any problem that I need to know?

    Thank you very much!

    You have your point of disagreement, but it is the best approach of guys Upgrade Oracle, google for Mike Dietrich blogs on updates. And your concern that make upgrades does not allow you to practice, well, you could easily make a few tests on my upgrade on a test environment, I really don't agree with your point here...

    Sorry - but I agree with the ground.

    Anyone who still uses 9i has some questions SERIOUS architecture dealing with totally outside the DB and data. There is just too much features auxiliary available (e.g., ASM, GRID, EM) which did NOT exist in 9i or substantially changed.

    It is also a non-starter, IMHO, not to recommend as an upgrade to 11g without even knowing the 9i version that uses OP. A direct upgrade to 11g is NOT possible since the first versions of 9i. So if such a version uses OP they couldn't make a direct upgrade anyway. They will need first to upgrade to the last version 9i and then level it to 11g. Then, they should adapt to 12 c.

    Then you must take account of the need for BACKUP:

    1. PRIOR to starting to do something

    2. AFTER the upgrade to 9.2.04

    3. AFTER the upgrade to 11 g

    4. AFTER the upgrade to 12 c

    Compare that to the approach of that ground is recommended to use export/import. There is NO need to save the source DB at all since the process will NOT change. Simply a backup after upgrading to 12 c.

  • How to migrate data from a source to multiple targets (tables)?

    How to migrate data from a source to multiple targets (tables)? Describe the General steps, please or point me to a tutorial

    Yes, a table in a mapping element can be source and target at the same time (i.e. a target can be reused as a source for the rest of the map on the right side of the table).

    Don't forget to check the order of loading (in the property map), to ensure that the reused as source is loaded before the final table target table.

    I tested it and it works. However, the documentation is not said in the link I gave you above:

    "Each element of data store that has entries but no exits in the logical diagram is considered a target."

    Usually, I tend not to do. I am in favour of a Divide and Conquer approach and try to have my mapping as simple as possible. It is easier to debug and maintain.

  • Get the error ORA-39146 while trying to import data from 10 g to 12 c

    Hi all


    im getting below error while trying to import data from 10 g to 12 c


    ORA-39146: schema 'B_SITES' does not exist
    import in WE8MSWIN1252 and AL16UTF16 NCHAR character set
    export in the UTF8 character set and AL16UTF16 NCHAR character set
    ATTENTION: the possible loss of data to character set conversions


    can someone help how do we change to WE8MSWIN1252 UTF8 character set...

    Hello

    "ORA-39146: there is no schema 'B_SITES'.

    ORA-39146: schema 'string' does not exist

    Cause: The specified schema was referenced as the source of a REMAP_SCHEMA parameter, but did not exist in the dump file (for

    Action: Specify the correct name of the schema to be remapped.

    Anand

  • How only migrate data between SQL Server 2008 Oracle 11?

    According to our requirement, we only have to migrate data from a SQL Server database to an existence
    Oracle database user.
    (1) I tried to do with the wizard of Migration SQL Developer 3.0.04, but find a problem.
    My SQL Server database name is SCDS41P2 and my Oracle database user name is CDS41P2;
    When I used SQL Developer move offline data by the Migration Wizard, I found all the oracle user
    name in movedata files who obtained by running the Migration Wizard
    is dbo_SCDS41P2. If the Oracle user name is not the same as my Oracle username existed.
    the data cannot be moved to my user Oracle existed when I run oracle_ctl.bat in the command line window.
    So I had to change the Oracle username in all the movedata files, but it is difficult to change because there are a lot of tables in
    databases. So could you please tell me how to get the movedata files which is the name of user oracle in them my
    WHEREAS Oracle user name?

    (2) I also tried to use the "copy to Oracle" to copy the data to SQL Server database tables
    the user database was Oracle. When you click on 'copy to Oracle', I selected the option 'Include data' and 'replace '.
    But I found some tables cannot be copied, the error info is as below:
    SPSSCMOR_CONTROLTABLE table failed. Message: ORA-00955: name is already used by an existing object

    Could you please tell me how to deal with this kind of mistake?

    Thank you!

    Published by: 870587 on July 6, 2011 02:57

    Hello
    After following with development the following should work too-

    1 use the migration option to capture and convert the SQL * database server
    2. go in SQL * Developer and remove the converted model.
    3. click on the captured model and choose 'convert '.
    4. click Next and you should get a screen with 2 options - "Data Type Mapping" and "Object Naming.
    5. choose "Object Naming" and scroll down the list until you see the name of the user who will be transformed. For example, in my test, I got the names scott_test and dbo_test - where the owners are 'scott' and 'dba' and 'test' was the name of the database.
    6. change the name of oner_database to just owner - scott_test to scott
    7 complete the conversion process and the owners must be created without the name of the database.
    8. you should now be able to generate the SQL * scripts of charger with only the name of the owner in the CTL files.

    Please try this and let us know if it works for you.

    Kind regards
    Mike

  • Trying to download music from itunes on a Windows Movie Maker 6.0 file and receive an error msg stating not installed codec. Windows Vista operating system.

    Trying to download music from itunes on a Windows Movie Maker 6.0 file and receive an error msg stating not installed codec.  Windows Vista operating system.

    Trying to download music from itunes on a Windows Movie Maker 6.0 file and receive an error msg stating not installed codec.  Windows Vista operating system.

    ==============================
    The following thread explains how to convert
    the files to a different format... iTunes then
    You should be able to import them.

    Need help to convert itunes to Windows Media
    http://social.answers.Microsoft.com/forums/en-us/vistamedia/thread/f496ae8e-d3f9-4336-BB3C-8070421c8eff
    (Scroll to the bottom to detach the message by: musiclover101)

    Or... use the following freeware to convert your
    already downloaded files to the .wma format.

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Format Factory
    http://www.pcfreetime.com/
    (FWIW... installation..., you can uncheck
    all the boxes on the last screen)

    After downloading and installing Format Factory...
    Open the program and choose an output folder...
    (this is where you will find your files when they are
    converted)

    Drag and drop your files in iTunes on the main screen...

    Select "while"WMA"/ OK...

    Click on... Beginning... in the toolbar...

    That should do it...

    Good luck...

    John Inzer - MS - MVP - Digital Media Experience - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • I moved from a Mac to a new Mac with Migration Wizard - PS CS6

    , I moved from a Mac to a new Mac with Migration Wizard - PS CS6 files etc. are in the App, but a message appears when you run PS 'Adobe Application Manager to start your trial, is missing or damaged. Please download a new copy of the MAO of http://adobe.com/go/applicationmanager"- considering that I bought this software - is this is the right way to solve the problem, or would it be better to re - install from scratch? "

    Hello Stefan,

    Migration tool does not help to activate the software.

    Please use the CC cleaning tool to remove it completely. (See: use of the Adobe Creative Cloud cleaning tool to solve installation problems)

    Then install the app again from the link: https://helpx.adobe.com/x-productkb/policy-pricing/cs6-product-downloads.html

    Kind regards

    Sheena

  • on windows xp, my system restore to a previous restore point. have you tried many restore points & creating new ones but the system does not restore. all the solutions out there?

    on windows xp that my system restore to a previous restore point, I tried many restore points & created new ones but the system displays "could not be restored", any help out there.

    Let see... What do we know about your system environment:

    It's windows xp.

    If we knew more, you would probably now.

    What is the problem that you are experiencing this thing you System Restore will be remedied?  System Restore is not a time machine.

    The system restore already worked successfully in the past?

    Thank you MS Answers, allowing the resolution of simple problems like frustrating and a lot of time as possible by asking only not for any information system when a new question is asked.

    Provide information on your system, the better you can:

    What is your system brand and model?

    What is your Version of XP and the Service Pack?

    Describe your current antivirus and software anti malware situation: McAfee, Symantec, Norton, Spybot, AVG, Avira!, MSE, Panda, Trend Micro, CA, Defender, ZoneAlarm, PC Tools, Comodo, etc..

    The question was preceded by a loss of power, aborted reboot or abnormal termination?  (this includes the plug pulling, buttons power, remove the battery, etc.)

    The afflicted system has a working CD/DVD (internal or external) drive?

    You have a true bootable XP installation CD (it is not the same as any recovery CD provided with your system)?

    If the system works, what do you think might have changed since the last time it did not work properly?

    Some tools Anti Virus 'protect' your system so that they will not allow a restore of the system work properly.
    For example, if you use Norton/Symantec products, you will see a message like this:
    Restoration incomplete. Your computer cannot be restored...
    It is also a popular Symantec problem (well, I'll be polite and call an "undocumented feature"...), they wrote an article about it:
    According to what you use for malware protection, you may need to disable the product temporarily, do the system restore and then turn the products light up again when the system restore is complete.
    Sometimes you need start your system in Mode safe and so that your protection programs are not running, and then do the system restore.  Tips from Microsoft in some of their articles that if the system restore does not restore your computer, start in Safe Mode, and then run the system restore.  It works for some configurations.
    System Restore is sometimes so afflicted or Restore Points are suspicious, the best solution is to reinstall your system restore.  This will remove the old Restore Points, but sometimes it's the only way to fix a broken system restore.  You don't have to reinstall XP, only the part of system restore.
    That can leave you with your problem of unspecified origin that you hope the system restore will fix (using a system restore is usually not equivalent to fixing the problem though).
    Give these ideas some consideration if they apply to you.
    Sometimes malicious will afflict your system restore to prevent you to find and remove malware.  It would much rather you trick into thinking that you need to repair or reinstall your XP when it is not necessary.
    No matter what you use for protection against malware, I do so and then only begin to solve any problems:
    Download, install, update and do a full scan with these free malware detection programs can solve any problems:
    Malwarebytes (MMFA): http://malwarebytes.org/
    SUPERAntiSpyware: (SAS): http://www.superantispyware.com/
    It can be uninstalled later if you wish.
    The scans by operating clean, reboot, test and we can fix any other issues.
  • problems to install the latest plugin from vcenter server 5.0.0.149 on the vco 4.1.1 build 733.

    I have problems to install the latest plugin from vcenter server 5.0.0.149 on the generation of vco 4.1.1 733.

    If I go to the plugins tab I see vCenter Server 5.0.0.149 Installation OK

    I configured a host esx to vCenter Server tab, but as soon as I click on 'Apply' it starts to load forever.

    I tried to restart the server vco and vco configuration services, but the problem remains unchanged. In the server.log I couldn't find anything relevant, but it is still attatched

    Hello!

    Try increasing the memory for the configurator web-tool, as described in the release notes:

    http://www.VMware.com/support/Orchestrator/doc/vCenter-server-plugin-50-release-notes.html

    See you soon,.

    Joerg

  • EPMA planning application migration: no synchronization with the provisioning of users

    Hi all
    We are migrating Production applications to dev. We have a planning EPMA and Essbase application in both environments.
    We migrated artifacts in the file system in PROD (Shared services, EPMA, planning, Essbase) and Reporting. We have copied and pasted into the folder what in DEV.
    Then, we try to migrate objects in DEV file system applications. First of all we did successfully EPMA artifacts in the migration status report, and then we deployed the application in the planning without any error. (msg showing as synchronized deployment). After that we had shared services, it is not
    MSG for error report status of migration:

    + 28:6571:Application < xxxxx > does not exist in the target. 28:6571:application < xxxx > does not exist in the target. 28:6571:application < xxxx > does not exist in the target. 28:6571:application < xxxxx > does not exist in the target. 28:6571:application < xxxx > does not exist in the target. ...+

    When I try to open the planning application, I get the error message: unable to synchronize with the commissioning, user see Planning journal for more details
    HyS9planningsyserr.log details:
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    [INFO] RegistryLogger - REGISTRY LOG INITIALIZED
    Rebinding of RMI thread creation
    com.hyperion.planning.DuplicateUserException: another user with hypadmin name already exists.
    com.hyperion.planning.DuplicateUserException: another user with hypadmin name already exists.
    com.hyperion.planning.HspRuntimeException: synchronization with the provisioning of users failed. Check the journal planning for more details
    at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login (unknown Source)
    at HspLogOn.Handle (unknown Source)
    at HspLogOn.doGet (unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3241)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.lang.RuntimeException: errors occurred during synchronization: [com.hyperion.planning.DuplicateUserException: there is already another user with the name of hypadmin.]
    at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login (unknown Source)
    at HspLogOn.Handle (unknown Source)
    at HspLogOn.doGet (unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3241)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.lang.RuntimeException: errors occurred during synchronization: [com.hyperion.planning.DuplicateUserException: there is already another user with the name of hypadmin.]
    at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login (unknown Source)
    at HspLogOn.Handle (unknown Source)
    at HspLogOn.doGet (unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3241)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    com.hyperion.planning.DuplicateUserException: another user with hypadmin name already exists.
    com.hyperion.planning.HspRuntimeException: synchronization with the provisioning of users failed. Check the journal planning for more details
    at com.hyperion.planning.HspJSImpl.synchronizeUserWithProvisioning (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HspJSImpl.login (unknown Source)
    at com.hyperion.planning.HyperionPlanningBean.Login (unknown Source)
    at HspLogOn.Handle (unknown Source)
    at HspLogOn.doGet (unknown Source)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    to weblogic.servlet.internal.StubSecurityHelper$ ServletServiceAction.run (StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    to weblogic.servlet.internal.WebAppServletContext$ ServletInvocationAction.run (WebAppServletContext.java:3241)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2010)
    at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:1916)
    at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1366)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:181)
    java.lang.RuntimeException: errors occurred during synchronization: [com.hyperion.planning.DuplicateUserException: there is already another user with the name of hypadmin.]




    Thank you
    Mady

    Hello

    I have the solution for this problem with the support of the Oracle.

    I have restored the database and migrated artifacts using LCM. a method is enough to make the migration of Planning (from Support of Oracle) applications

    Thank you
    Mady

  • What do I have to remove the battery from my PC when I connect it with the cable?

    So that the battery do not damaged.
    What do I have to remove the battery from my PC when I connect it with the cable?
    Tell me what I need to do for that battery not damaged

    Hi mate,
    Don t worry, just use your machine and leave your battery in your machine, because an electronic load look at your battery, so no damage will be caused.

    You know, technology is in fact at a good level and I think it s ok to operate your machine with cables and battery SET. :

    Greetings

Maybe you are looking for

  • insufficient information,

    What should I do if I am trying to reset my security questions but not enough information?

  • DeskJet 3052 has

    Print very slowly. Have reinstalled without change. Link on the forum describing the solution is broken. Thank you.

  • Build order

    Hello With Keynote 6.6.1 I build slides with several objects and transitions (90 +). Some of these objects are text boxes. Sometimes, I need to go back and change the text boxes. The problem is that they are hidden behind many other objects. I used t

  • How to respond to customers? (double billing?)

    So, client sends me and told me that he could have been charged twice for an application. How can I know this info? And if we do not have access to this information, what should I tell the customer to do? Thanks for the help.

  • ERROR on SCREEN BLUE - DRIVER_IRQL_NOT_LESS_OR_EQUAL (Windows 7)

    I am a user of Windows 7 bits (64).Recently my PC (DELL Latitude E6320) crashes randomly, showing a blue screen error DRIVER_IRQL_NOT_LESS_OR_EQUAL Also in my device manager there is an unknown device, details below Can someone help me solve this?