Need to migrate DI 11.5.1.2.0 of windows environment to DI 11.7.2.0 fo Linux environment

Hey any one please give me steps to follow, for magrating DI 11.5.1.2.0 of windows environment to DI 11.7.2.0 fo Linux environment.
Very Thank full to you all.. in Advance

Hi Simon;
I Have looked throught these notes but I still cant see a definitive answer to whether the new Windows server will require a fresh 11.5.10 install before I can clone my existing system?No its not. If You follow below note you will see it doesnt mention something like you ask
Cloning Oracle Applications Release 11i with Rapid Clone [ID 230672.1]
Your steps should be like:
1. Section 1: Prerequisites apply related patch your source (Dont forget Check Appendix A: Install JRE 1.3.1 into RDBMS ORACLE_HOME)
2. Section 2: Run preclone on source
3. Copy file from source to target
4. run postclone
5.restart machine
if not how is the registery values and services created?Rapidclone handle it
Regard
Helios

Similar Messages

  • Need to migrate oracle database 10.1.0.4.0(windows 2000 32bit) to 64bit

    Hi all,
    could you please send me the steps of 10G migration from 32 bit 2000 to 64 bit 2003. i have my prod server which is in hazerds because i have some operating system level problems ,
    *(source)*
    OS                      database
    windows 2000(32 bit)       10.1.0.4.0
    Target
    OS
    Windows 2003 (64bit)     10.1.0.4.0
    both the servers are on remote sites
    thanks and regards

    G.7 Database Migration from a 32-bit Windows Computer
    This section contains these topics:
    Backing Up a 32-Bit Oracle Database
    Migrating an Oracle Database 10g Release 1 (10.1) Database
    Migrating an Oracle9i or Older Database
    See Also:
    Oracle Database Upgrade Guide
    G.7.1 Backing Up a 32-Bit Oracle Database
    To back up a 32-bit Oracle home database:
    Start SQL*Plus:
    C:\> sqlplus /NOLOG
    Connect to the database instance as SYSDBA:
    SQL> CONNECT / AS SYSDBA;
    Create a .trc file to use as a template to re-create the control files on the 64-bit computer:
    SQL> ALTER DATABASE BACKUP CONTROLFILE TO TRACE;
    Shut down the database:
    SQL> SHUTDOWN IMMEDIATE;
    Perform a full offline backup of the database.
    See Also:
    Oracle Database Recovery Manager Quick Start Guide
    G.7.2 Migrating an Oracle Database 10g Release 1 (10.1) Database
    To migrate an Oracle Database 10g Release 1 (10.1) database for 32-bit Windows to an Oracle Database 10g Release 1 (10.1) database for 64-bit Windows:
    Install Oracle Database 10g Release 1 (10.1) for 64-bit Windows.
    See Also:
    Oracle Database Installation Guide for Windows
    Create the new Oracle Database 10g Release 1 (10.1) service at the command prompt:
    C:\> ORADIM -NEW -SID SID [-INTPWD PASSWORD ]-MAXUSERS USERS
    -STARTMODE AUTO -PFILE ORACLE_HOME\DATABASE\INITSID.ORA
    The following table provides more information on the values you must supply.
    Parameter      Description
    SID     SID of the database you are upgrading
    PASSWORD     Password for the new Oracle Database 10g Release 1 (10.1) for 64-bit Windows database. This is the password for the user connected with SYSDBA privileges. The -INTPWD option is not required. If you do not specify it, then operating system authentication is used, and no password is required.
    USERS     Maximum number of users who can be granted SYSDBA and SYSOPER privileges
    ORACLE_HOME     Oracle home directory. Ensure that you specify the full path name with the -PFILE option, including drive letter of the Oracle home directory.
    Copy the 32-bit datafiles to the new 64-bit Oracle home.
    Copy the 32-bit configuration files to the 64-bit Oracle home.
    If your 32-bit initialization parameter file has an IFILE (include file) entry, then copy the file specified by the IFILE entry to the 64-bit Oracle home and edit the IFILE entry in the initialization parameter file to point to its new location.
    If you have a password file that resides in the 32-bit Oracle home, then copy the password file to the 64-bit Oracle home. The default 32-bit password file is located in ORACLE_BASE\ORACLE_HOME\database\pwdSID.ora., where SID is your Oracle instance ID.
    In the 64-bit Oracle home, add the _SYSTEM_TRIG_ENABLED = false parameter to the ORACLE_HOME\database\ORACLE_SID \init.ora file before changing the word size.
    Remove this parameter from the initialization file after the word size change is complete.
    See Also:
    Oracle Database Upgrade Guide for more information on changing word size
    Go to the 64-bit ORACLE_HOME\rdbms\admin directory from the command prompt.
    Start SQL*Plus:
    C:\> sqlplus /NOLOG
    Connect to the database instance as SYSDBA:
    SQL> CONNECT / AS SYSDBA;
    Re-create the 64-bit control files using the CREATE CONTROLFILE command. Edit the trace file created in "Backing Up a 32-Bit Oracle Database" to change the paths to the datafiles, log files and control files to point to the Oracle home on the 64-bit computer. This creates the new control file in ORACLE_HOME\database.
    Here is an example of a database named "orcl32" on a 32-bit computer migrating to "orcl64" on a 64-bit computer:
    CREATE CONTROLFILE REUSE DATABASE "T1" NORESETLOGS NOARCHIVELOG
        MAXLOGFILES 32
        MAXLOGMEMBERS 2
        MAXDATAFILES 32
        MAXINSTANCES 16
        MAXLOGHISTORY 1815
    LOGFILE
        GROUP 1 'C:\oracle\product\10.1.0\oradata\orcl64\REDO03.LOG'  SIZE 1M,
        # was   'C:\oracle\product\10.1.0\oradata\orcl32\...LOG'
        # on the 32-bit computer
        GROUP 2 'C:\oracle\product\10.1.0\oradata\orcl64\REDO02.LOG'  SIZE 1M,
        GROUP 3 'C:\oracle\product\10.1.0\oradata\orcl64\REDO01.LOG'  SIZE 1M
    DATAFILE
       'C:\oracle\product\10.1.0\oradata\orcl64\SYSTEM01.DBF',
        # was 'C:\oracle\product\10.1.0\oradata\orcl32\...DBF'
        # on the 32-bit computer
       'C:\oracle\product\10.1.0\oradata\orcl64\RBS01.DBF',
       'C:\oracle\product\10.1.0\oradata\orcl64\USERS01.DBF',
       'C:\oracle\product\10.1.0\oradata\orcl64\TEMP01.DBF',
       'C:\oracle\product\10.1.0\oradata\orcl64\TOOLS01.DBF',
       'C:\oracle\product\10.1.0\oradata\orcl64\INDX01.DBF',
       'C:\oracle\product\10.1.0\oradata\orcl64\DR01.DBF'
    CHARACTER SET WE8ISO8859P1;
    Alter the init file from the 32-bit computer to include the new control file generated in the preceding step.
    Start the database in RESTRICT mode:
    SQL> STARTUP RESTRICT;
    You might need to use the PFILE option to specify the location of your initialization parameter file.
    Set the system to spool results to a log file for later verification of success. For example:
    SQL> SPOOL catoutw.log
    Enter the following command to view the output of the script on-screen:
    SQL> SET ECHO ON;
    Recompile existing PL/SQL modules in the format required by the 64-bit Oracle9i database:
    SQL> @utlirp.sql;
    Turn off the spooling of script results to the log file:
    SQL> SPOOL OFF;
    Check the spool file and verify that the packages and procedures compiled successfully. Correct any problems you find in this file.
    If you were viewing the output of catoutw.log on-screen, disable viewing now:
    SQL> SET ECHO OFF;
    Exit the RESTRICT database mode:
    SQL> ALTER SYSTEM DISABLE RESTRICTED SESSION;
    The word size of the 64-bit Oracle Database 10g Release 1 (10.1) database is changed. You can open the database for normal use.This is from the link

  • Do I need the Migration and DVD/CD Sharing Update...

    ...if I run only an iMac and a Windows laptop?

    Yes, if you need to migrate from one computer to a newer one or another one. It isn't required for Windows.

  • I need to migrate an XPI developed for Firefox 2.x on Solaris to Firefox 3.6 for Windows

    I need to migrate an XPI developed for Firefox 2.x on Sun Solaris to Firefox 3.6 on Windows. The XPI archive contains a XUL file which gives many error messages when I use the XPI addon:
    C:\>firefox.exe -trmail-view
    What would be the best approach? Try to modify existing files XUL/JS files or start with the new JS files from Firefox 3.6 Windows?
    Existing XPI contains files:
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all
    03/10/2011 05:13 PM <DIR> chrome
    02/05/2008 11:21 AM 31 chrome.manifest
    03/10/2011 05:14 PM <DIR> components
    03/10/2011 12:38 PM 942 install.rdf
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all\chrome\content
    03/06/2008 03:42 PM 274 cfg.js
    03/06/2008 03:39 PM 15,164 dispatcher.js
    03/05/2008 01:44 PM 19,923 errorManager.js
    03/05/2008 02:45 PM 32,339 folders.js
    03/05/2008 03:07 PM 36,291 messages.js
    03/05/2008 03:07 PM 12,869 search.js
    02/20/2008 03:30 PM 5,587 settings.js
    03/05/2008 01:46 PM 11,442 trUtils.js
    03/10/2011 05:40 PM 80,398 trwin.xul
    03/06/2008 03:43 PM 13,115 utils.js
    Directory of C:\Documents and Settings\BogdanS\My Documents\solaristrmail_2008_03-all\components
    02/12/2008 03:28 PM 5,527 .#trProtocol.js.1.2
    02/12/2008 12:46 PM 5,924 trcommandline.js
    02/22/2008 09:41 AM 5,719 trProtocol.js

    Credit Tony E
    To downgrade to Firefox 3.6 first uninstall Firefox 4, but do not select the option to "Remove my Firefox personal data". If you select that option it will delete your bookmarks, passwords and other user data. See https://support.mozilla.com/kb/Uninstalling+Firefox
    You can then install the latest version of Firefox 3.6 available from http://www.mozilla.com/en-US/firefox/all-older.html - it will automatically use your current bookmarks, passwords etc.
    To avoid possible problems with downgrading, I recommend going to your profile folder and deleting the following files if they exist - extensions.cache, extensions.rdf, extensions.ini, extensions.sqlite and localstore.rdf. Deleting these files will force Firefox to rebuild the list of installed extensions, checking their compatibility, and reset toolbar customizations.
    For details of how to find your profile folder see https://support.mozilla.com/kb/Profiles

  • HT5129 How do I turn off MobileMe has been discontinued warning off.  I did not keep photo under gallery so there is no need to migrate.

    How do I turn off "MobileMe has been discontinued" warning off.  I did not keep photo under gallery so there is no need to migrate.  The warning keep on showing up after initial round.

    In the iPhoto preferences delete all references to MM and do likewise in the system preferences
    LN

  • Need to migrate LDAP users from 11.1.1.1 HSS to 11.1.2.2 HSS..????

    Greetings!!!
    Hi there, I need to know the best approach how can i migrate my security from 11.1.1.1 to 11.1.2.2. (I have users, groups and security filters).
    I have just 2 native id's so I am fine there. But I have about 2000 LDAP user whcih are configured under 10 groups which I need to migrate from 11.1.1.1 to 11.1.2.2 HSS.
    OS - AIX6.1
    App server - weblogic\
    DB-IBM DB2 9.7
    Please recommend!!
    Regards,

    You could try LCM to run the export, I don't think the two versions of LCM are compatible so you can just use the export files and not the lcm config files.
    You can also use the CSSImportExport utility to export provisioning from 11.1.1.1
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Need to migrate Shared services users and groups from 9.3.1 to 11.1.2.2 ver

    Hi All,
    We need to migrate Shared services users and groups from 9.3.1 to 11.1.2.2 version. Any help would be appreciated. Can we use CSS import export utility?
    Thanks in advance!!

    Hi John, In my another environment I have to migrate the users and groups from Hyperion HSS 11.1.1.2 to Hyperion shared services 11.1.2.2. I am using LCM for that, when I export the users and gropus from 11.1.1.2, it exports fine but when i import it to my 11.1.2.2 using LCM, I am getting the below errors.
    Error when I try to import the groups:
    ErrorEPMIE-00051: Failed to perform operation on role. Could not locate role matching filter {0} and filter attribute {1}. Please ensure that a role exists matching the filter with filter attribute.
    EPMIE-00024: Failed to import all of the membership info for group test group. Invalid group members encountered. Please ensure the validity of members and its existence in their respective providers.
    Errors when i try to import the users:
    ErrorEPMIE-00051: Failed to perform operation on role. Could not locate role matching filter {0} and filter attribute {1}. Please ensure that a role exists matching the filter with filter attribute.
    EPMIE-00020: Failed to update user 04668162 during import. Invalid identity for user. Please ensure that the user is available in the system with the identity specified in the import file.
    Any idea?
    Thanks in advance.

  • HT4889 I need to migrate from a mac pro os 10.6.8 to OS lion imac. I will be using a firewire.  I see articles for os 10.4 to lion but not 10.6.8 to lion - anyone have the steps?

    I have a mac pro 10.6.8 and need to migrate everything to the imac with OS lion.  I see articles for migration form 10.6 to OS lion but not 10.6.8 -
    Anyone have a link or a step by step guide so I can do this correctly? 

    See Pondini's Setup New Mac guide.

  • My newish MacBook Air was just lost to a coffee spill, and I need to migrate back to my MacBook Pro using a recent back-up (Time Machine to external disk).  Can I do this?

    My newish MacBook Air was just lost to a coffee spill, and I need to migrate back to my MacBook Pro using a recent back-up (Time Machine to external disk) for a few weeks.  This same disk was used to back-up the Pro earlier, and to migrate from the Pro to the Air.  Can I do this "back-migration" from the Air to the Pro?  Is it maybe better just to migrate the specific folders (Outlook email, Office docs) I am sure I need?

    Do not attempt to copy files/folders from a Time Machine backup. Only use the Time Machine application to restore from the backup.
    Click on a Finder window and select Help from the Finder's Help menu. Search for "restore" and select "restore items backed up with time machine" from the hints list. You will find these two articles:
    Recover items using Time Machine and Spotlight
    If you use Time Machine to back up your Mac, you can use Time Machine with Spotlight to recover lost or deleted items.
    Note: You can retrieve earlier versions of TextEdit documents from within TextEdit. For more information, see: 
    View and restore past versions of documents
    Open a Finder window and type a search word or phrase in the search field in the upper-right corner.
    Select a location to search in the location bar.
    Refine the results by specifying search criteria. Narrow down Spotlight search results
    Open the Time Machine menu in the menu bar, then choose Enter Time Machine.
    Use the arrows and timeline to browse the Time Machine backups. Your search is performed in every window.
    When you find the item you want to restore, select it, then click Restore.
    The restored item is returned to its original location. For example, if the item was found in the Documents folder, it’s returned to the Documents folder.
    Restore items backed up with Time Machine
    If you use Time Machine to back up your Mac, you can easily bring back lost items or recover older versions of files.
    You can use Time Machine within many apps. If the iCloud Documents & Data feature is turned on, you can recover older versions of iCloud documents as well as regular documents.
    Open a window for the item you want to restore.For example, if you accidentally deleted a file from your Documents folder, open the Documents folder. To recover an email message, open your inbox in Mail. To recover an iCloud document, open the document’s app, choose File > Open, then click iCloud to view the iCloud documents for that app.If you’re missing an item from the desktop, you don’t need to open a window.
    From the Time Machine menu in the menu bar, choose Enter Time Machine. A message may appear while your Mac connects to the backup disk.
    Use the arrows and timeline to browse the snapshots and backups.White tick marks represent snapshots stored on your internal drive (portable computers only). Pink tick marks represent backups stored on your backup disk. If a tick mark appears dimmed or grayed, there’s no backup available or the backup disk is not connected.
    For more information about an item, double-click it.The windows in Time Machine behave just like Finder windows, so you can open folders, click items in the sidebar, and use the search field in the upper-right corner of the window.
    When you find the item you want to restore, select it, then click Restore. You can restore individual items, multiple items, folders, or your entire hard disk.The restored item is returned to its original location. For example, if the item was found in the Documents folder, it is returned to the Documents folder.

  • HT201250 I am very frustrated. New to iMac products. Just bought a 27" iMac two days ago. Received no manual, no booklet with ID registration number, etc. Need help migrating PC to iMac. How do I get in touch?

    Need help migrating pc to imac. Do not have manual. Trying to get infornation online, but, cannot get an answer.
    I have downloaded pc migration assistant to pc windows 8 pro. Was able to get imac to finally give me "the number"
    Did the same with pc received number once, not same as imac. Pop up window with info dissappers and cannot recover
    What am I doing wrong? Paid extra for extended support package and it took hours to finally get it registered and approved.
    However, no help. Yikes, I feel like a make another great mistake!

    First: If you purchased AppleCare you should call back at 1-800-APL-CARE and ask for further assistance.  You'll want to learn how to retrieve your operating system version and your IMac's serial number as you'll need these for when you call AppleCare:
    Click on the Black Apple in the top left hand corner of your Imac's physical monitor
    Click on About this Mac from the drop down menu
    Below the silver Apple and "OS X" it will say "Version 10.x.x"  (If this number is not 10.8.4, run Software Update by hitting the button marked "Software Update")
    Click on this number twice in a row.  This is your machine's serial number.  (zeros can be used; the letter "O" is never used).
    http://support.apple.com/kb/HT1349 for details how to find serial numbers on Apple products
    If you have an Apple ID (you can create one at appleid.apple.com), you can login to supportprofile.apple.com, register an Apple product, and sign up for VoicePass, which, if you give your product a name e.g. Maria's Imac, you can speak that over the phone and skip having to give the serial number when you call. 
    If you have an Apple ID, you can also call AppleCare and ask them to activate VoicePass.
    This is the link for your tech specs: http://support.apple.com/kb/SP667
    This is the link for your quick start guide: http://manuals.info.apple.com/en_US/imac_late2012_quickstart.pdf
    This is the link for important product information: http://manuals.info.apple.com/en_US/imac_late2012_quickstart.pdf
    Second: this is an educated guess: Your new Imac and your PC need to be either on the same wifi network or you need to connect them physically with an Ethernet cable (available at Radio Shack, Wal Mart, etc).  My guess is that they are not, and so your IMac and PC are not talking to each other.  That might be why you are seeing a different code on the PC.
    Time Machine would not be relevant to your issue.  http://support.apple.com/kb/HT4796 is the link to relevant instructions, however it left out some housekeeping you should do on your Imac before you begin a migration
    Run Software Update on the IMac to confirm that the latest updates are installed.
    On the IMac, make sure that you have the latest versions of any third-party software.
    On the source Mac, open System Preferences, click Sharing, and make sure there is a name in the Computer Name field.
    Do not let either computer go to sleep while you are attempting to migrate. To disable sleep on the IMac
    Choose System Preferences from the Apple () menu.
    Choose Energy Saver from the View menu.
    Adjust the "Computer sleep:" slider to Never. (Change this back after the migration is done).
    You can adjust "Display Sleep" to a few minutes - this won't affect the migration
    Uncheck the box if checked next to "Put Hard Disks to sleep when possible"
    I don't know Windows 8 but this link looks promising as to how to disable sleep: http://techmell.net/how-to/disable-enable-sleep-mode-hibernate-windows-8/
    Once you've done this, either connect both Mac and PC to the same wifi network and surf the web with each to confirm that connection is working - or connect them to each other with an Ethernet cable. 
    Then relaunch Migration Assistant on your Imac and your PC, and follow the instructions in http://support.apple.com/kb/HT4796 starting with your IMac, or call AppleCare back. 
    Understand that if you have further issues, you'll need to help AppleCare help you by:
    walking them through the steps you've taken in Migration Assistant
    letting them guide you as they isolate the issue to either:
    The Imac's software
    The IMac's hardware
    The PC's software
    The PC's hardware
    Firewall settings (maybe - especially if 3rd party firewalls are installed)
    The wifi connection, if used
    The ethernet connection, if used
    I think the issue is likely what I guessed, or it's a software issue.
    To learn more about your new Mac, I recommend this link: http://www.apple.com/support/imac/intel/
    And this book: http://www.amazon.com/books/dp/0789749890
    I am a technical support professional who troubleshoots Macs all day long.  I do this for a living.  The book above is the most accurate, and easy to understand book I've seen with respect to using Mountain Lion and its various applications.  It's for a MacBook but the focus is on the software which is why I recommend it.
    Don't feel like you have to rush to upgrade to OS X Mavericks.  In fact, you should always confirm both all the hardware and software you use is compatible with any new operating system before you upgrade.  And ask yourself: "why do I need it now?"  Because it's new is not a good answer.
    In the future, specifying any troubleshooting others have done will help those on these boards help you.  Also, don't let a specific issue lead you to assume you've made an all-encompassing mistake.  It's just one issue, and it's resolvable.
    And everyone else: giving a dozen recommendations for reading will only leave the petitioner bewildered.  Start with three.  And try responding with a hypothesis as to what's causing the primary problem!

  • I need to migrate data from Lion to OSX do you know of any problems with content between the two systems?

    I'm using a MacBook AIR and OSX 10.9.1. When I upgraded that I made a mistake with the user name and so created another user. Now I understand I need to migrate the data between the two systems but that there might be trouble with some of the content files transferring across? Has anyone done this before? If so what were the pitfalls? Thanks and Help! No-one typing this feels as if they're on a steep learning curve at all!

    Hi nothpole
    Welcome to BlackBerry Support Forums
    Sorry to hear that you're having issues with your BlackBerry ! Before trying anything else can you try check a few setting or undo it on your device ?
    northpole wrote:
    I have memory cleaning scheduled to run every 1 hour.
    First advise is to disable Memory Cleaner ! you don't need that , It can cause freezing and clocking. To disable it , From your homescreen go to Options > Security > Advance Security setting > Memory Cleaner > Disable that feature .After disabling it reboot your device do it by removing the Battery while your device is Powered On then wait for at least a minute then reinsert it back, your device may take a long reboot . 
    Then monitor your device for the next few hrs. and check if you feel the same problem .
    let us know.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • What i need to migrate portal EP 7 windows 32-bits to windows 64-bits

    Hello,
    What i need to migrate portal EP 7 windows 32-bits to windows 64-bits.
    database ORACLE 10.2.0.2.
    thanks

    Hello,
    i see this step in system copy installation guide.
    can i do this without do a hetgenreous system copy ?
    Windows Oracle: In chapter "Generating the Control File Structure" of the system copy guide for the database specific system copy procedure, add the following information as Step 1:
    If you want to migrate your database from 32-bit to 64-bit or vice versa, add the following lines at the bottom of the control.sql file for Oracle 9.2 or Oracle 10.2:
    Oracle 9.2: shutdown immediate
    startup restrict
    spool utlirp.log
    @?/rdbms/admin/utlirp.sql
    spool off
    alter system disable restricted session
    Oracle 10.2 shutdown immediate
    startup upgrade
    spool utlirp.log
    @?/rdbms/admin/utlirp.sql
    spool off
    Shutdown immediate
    Startup
    Spool utlrp.log
    @?/rdbms/admin/utlrp.sql
    Spool off
    exit

  • Migrate Oracle EBS 12.1.3 from Microsoft Windows 2003 32-Bit to Linux

    Hi
    We are currently using Oracle EBS 12.1.3 on Microsoft Windows 2003 32-Bit. We are planning to migrate to linux. I have gone through the certification matrix and the following versions certified with Oracle EBS 12.1.3
    1. Linux x86 Oracle Linux 5
    2. Linux x86 Oracle Linux 4
    3. Linux x86 Red Hat Enterprise Linux 5
    4. Linux x86 SLES 10
    Question #
    1Q) I would like to know is there any linux freeware which is certified with Oracle EBS 12.1.3
    2Q) Also please let me know which documents I need to follow to migrate Oracle EBS 12.1.3 from Microsoft Windows to Linux

    1Q) I would like to know is there any linux freeware which is certified with Oracle EBS 12.1.3No.
    2Q) Also please let me know which documents I need to follow to migrate Oracle EBS 12.1.3 from Microsoft Windows to LinuxApplication Tier Platform Migration with Oracle E-Business Suite Release 12 [ID 438086.1]
    To migrate the database you can use export/import or transportable tablespaces -- Refer to these docs for details:
    Export/Import Process for Oracle E-Business Suite Release 12 using 10gR2 [ID 454616.1]
    Export/import process for R12 using 11gR1 or 11gR2 [ID 741818.1]
    Using Transportable Database to migrate E-Business Suite R12 Using Oracle Database 10gR2 or 11g [ID 734763.1]
    Thanks,
    Hussein

  • Migration from Small business server 2011 standad to Windows 2012 Server Standard

    Hi everyone,
    I have a network with SBS 2011 standard (that is the only server) and now we are moving (migrating) to windows 2012 server standard with an exchange 2013 (not yet installed).
    The main thing is that when trying to install the migration tool on the SBS server, it will not install because it is not a 2008 R2 server.
    is there a workaround for this problem?
    I Hope this will help. Amir Ovadia

    Hi,
    Would you please first let me know how did you perform the migration? Regarding the migration tool, is it the Windows Server Migration Tools in Windows Server 2012 R2? Since you need to install
    the Windows Server Migration Tools on the source SBS 2011 server, I suggest we could perform the following steps to install it.
    Create deployment folders for ource computers by running the
    smigdeploy.exe tool (included with Windows Server Migration Tools) on your destination server.
    Register Windows Server Migration Tools on source computers that are running Windows Server 2012, Windows Server 2008 R2, Windows Server 2008, or Windows
    Server 2003 by using SmigDeploy.exe.
    For details, please refer to the following article.
    Install, Use, and Remove Windows Server Migration Tools
    http://technet.microsoft.com/library/jj134202
    In addition, here are some similar threads about how to perform the migration from SBS to Windows Server 2012 Standard, maybe they are useful to us.
    how to Migrate sbs 2011 to Standard 2012 server
    http://social.technet.microsoft.com/Forums/en-US/e1d4b09f-8857-4ef6-9a80-6a906e76b688/how-to-migrate-sbs-2011-to-standard-2012-server
    Migrate SBS 2011 to Server 2012 Standard
    http://social.technet.microsoft.com/Forums/en-US/f552ef12-07a9-4f7a-bf5e-24500c3e1dc3/migrate-sbs-2011-to-server-2012-standard
    Migrating from Windows SBS 2011 Essentials to Windows Server 2012 Standard
    http://social.technet.microsoft.com/Forums/en-US/41d17523-c6ae-4ba6-851f-a42b16f31d2a/migrating-from-windows-sbs-2011-essentials-to-windows-server-2012-standard
    As there is no specific documentation on migrating from SBS to Windows server 2012, if you want the step by step procedure about the migration, we’d better involve
    SBSMigration.com for detailed information.
    Thanks.
    Best Regards,
    Andy Qi
    TechNet Subscriber Support
    If you are
    TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Andy Qi
    TechNet Community Support

  • I am retired.  In my active years, I purchased Adobe Creative Suite 4 Design Standard and Dreamweaver CS5 for my Windows environment.  I recently spent a fortune to migrate to  Apple.  I realize that my licenses are not recognized by Adobe. I am desperate

    I am retired.  In my active years, I purchased Adobe Creative Suite 4 Design Standard and Dreamweaver CS5 for my Windows environment.  I recently spent a fortune to migrate to  Apple.  I now (and a bite late) realize that my licenses are not recognized by Adobe. I am desperate. I cannot afford the expense of buying or paying access to the software and, still,  I need the tools for all those little things I do for enjoyment. What can be done?

    The licenses are operating system specific, so one option would be to retain use of the Windows machine you had before the Mac.
    If you want to try to use the older stuff on your new Mac you can try installing Windows emulation software such as Bootcamp.

Maybe you are looking for