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

Similar Messages

  • HT1343 how do I switch between windows in the same programme?  I know that I can use Command tab, however this takes you through all of the programmes that I'm using. What I need to do is have a shortcut to switch between windows in the same programme.

    how do I switch between windows in the same programme?  I know that I can use Command tab, however this takes you through all of the programmes that I'm using. What I need to do is have a shortcut to switch between windows in the same programme.  For example if I'm in Excel and have 5 windows open I want to be able to scroll between each window of Excel only with a shortcut.
    Please help!

    Command and ~ keys to tab between open windows.
    Technically it is the Grave Accent ` (aka reverse quote) under the tilda ~ key.  Tilda ~ is shifted, and Grave Accent ` is not.
    Command-Grave Accent

  • 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

  • What is needed to run the deployment utility while not logged into Windows?

    I am running a bash script to perform nightly builds of our test s/w. This script calls the deployment utility via command line. The actual command I am using is:
    /cygdrive/c/Program\ Files/National\ Instruments/TestStand\ 4.1.1/Components/Tools/Deployment\ Utility/DeploymentUtility -- build "C:\Sandbox\ATE\Production_Test_Projects\eHLC_RX\Deployment\Unified_eHLC_RX_Test_Deployment_Config.tsd"
    It works flawlessly as long as I am logged into the PC. I have a cron job running to invoke my main script on a daily basis. As soon as I log out of the PC is when I am having the trouble. The script does get started but when looking at the processes on the PC I see my bash sessions open as well as the deployment utility open but it is not doing anything. If I end the deployment utility process the bash script continues and exits normally. Is there something I have to put in the command line to make the deployment utility work if I am not logged in? I have the cron running as a service and it is using my username and pw when required. But the deployment utility just hangs and does nothing. The deployment utility log is blank so it was basically opened but did not perform the build. Any ideas as to what may be causing this? Thanks in advance for any help.
    Troy

    Here is a little more information. I changed the service that is running my script which is calling the Deployment Utility via command line from This Account on the Log On tab which requires my username and password to Local System Account and checked Allow Service to Interact with Desktop. This time when I was logged out of the PC and the script started I logged back on and could see the message that was thrown when the Deployment Utility was initialized. I could not see this with the service set to the other parameter because it is running in the back ground. I am sure this is what is happening because in this state I check the processes on the PC and it is reflecting the same information. The memory usage is the same and the Deployment Utility is doing nothing obviously waiting for acknowledgement of this error. If I click OK the build does start but at the end I get all types of debug messages at the end which do not happen when I am logged in and this process completes. Does anyone have any idea what this error message is referring to and maybe how to fix it?
    Thanks again for any help.
    Attachments:
    Startup_Error.JPG ‏80 KB

  • 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

  • Upgrading/Migrating Portal System from EP 6.40 SP21 to EP 7.0 SP2

    Upgrading/Migrating Portal System from EP 6.40 SP21 to EP 7.0 SP2
    IN EP 6.40 we have ESS/MSS 60.2.2,KM,NWDI ,IN BAck end we have ECC 6.0 .
    COuld you let me what are the list of measures/Prerequisites i need to take before going for upgrade .

    Hi,
    You can upgrade your portal with all usages that you have installed. You need to check upgrade guide as well.
    You need to check if there is any custom development on the portal to migrate it to new version.
    Thanks
    Sunny

  • Is JCAPS what i need?

    Hi, we're kind of reviewing if it is worth migrating our current system to JCAPS. It all started with the issue in the default resource adapter (jmsra) of Open Source GlassFishv2.1.1 which does not support XA transaction. Looking at the alternatives, these are what we have identified so far:
    1. is to manually deploy JMSJCA (sun-jms-adapter) in our GlassFish server, but still need to migrate our codes to netbeans as there is no plugin for eclipse to create the JCA-Message-Driven-Bean.
    2. is to use GlassFishESBv2.2
    3. is to use JCAPS6
    moreover, it is very painful for us to maintain this current system as we really dont have any expert on GlassFish and OpenMQ. Any system related error on these technologies would just have us lookup on the internet and assume cause of the issue and solutions.
    So JCAPS folks out there... is it?
    Thanks in advance.
    Edited by: user1172263 on Jan 3, 2011 10:08 PM

    hi user1172263,
    what does your current system really do so far? how complex is it?
    will you be able to spend a lot of money?
    i would currently not recommend everyone to move towards CAPS since it will be dropped by oracle soon.
    regards chris

  • Confused. So a new mac came out? what exactly is the migration about?

    Ok so I havent been to the apple site in forever and I c that they came out with a new mac, so do the old ones need any updates or new parts?? Im confused. What is the whole migration about? I havent done anything to my macpro since I bought it last christmas.

    Hey Amanda, and Welcome to Apple Discussions.
    Great to see another Okie in here...
    What exactly are you refereeing to when you say "What is the migration about"?
    The prev responses are correct in the fact that you don't need any new parts for your Mac. Occasionally about every six months Apple as other manufactures will release a great new product that will make people water at the mouth forcing them to give in to the over powering urge to spend money, that's what they're all about... making money. Your Mac-Pro or (you probably meant Macbook Pro) will last you many years with the OS and hardware it has, but as tjk said you need to perform the Apple Software updates from time to time (the Mac is defaulted to update automatically) to ensure you have the latest and greatest software for the OS you are running.

  • 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

  • What is native for EP and what is needed to develop and how...

    Hi guys!
    I have to prepare a presentation of possibilities of the SAP's EP 6.0. I need to know, what is "native" - just plug n' play and how to develop other things... Can you help me please? Any links, documents .... are welcome!
    Another question: If I have an independent web application...  - how is it possible to develop it wthin the portal?
    Thanx 4 answer... Points are guaranteed!
    Peter

    Hi Peter,
    There is a wealth of information you can pull from SAP sites by looking at presentations and product info.  If you need a short cut, I have a simple presentation I put together with some talking points about the SAP Portal.  eMail me at [email protected] to get it.
    In a nut shell, the "native" things you can get from the SAP Portal is quick and easy access to SAP systems.  For example, you can create and display a page to users with a SAP R/3 transaction, an ITS screen, or a BW report in just a few minutes.  With some simple configuration work, users will not have to login to the separate systems.  One of the key advantages of the portal is that it creates an environment for administrators to create/modify views to information using configuration (templates) instead of having to do any coding.
    SAP Portal out-of-the-box also has some support for connecting to web services (SAP and non-SAP) and for displaying content from external/internal sites using an IFrame.
    If you are not familiar with Portals, I would read some of the product information on the SAP Portal.  There you will learn more about the use of Roles to secure and display information, delegated administration of content, end user features, etc.
    Another key concept is the use of Business Packages provided by SAP and other vendors.  Business Packages are pre-built content that you import into the portal.  These packages do require some configuration, however, they are really meant to be "plug and play."  Depending on your companies license agreements, a lot of these packages may be free.  Examples, include Employee Self Service and Manager Self Service business packages that interface with the HR Module in R/3 and BW.  You can get to a listing of the packages here: https://www.sdn.sap.com/irj/sdn/developerareas/contentportfolio   If you look at some of them, you will see documents and screen shot examples.
    If you are not using out-of-the-box functionality then you will create your own templates and applications.  Custom development is done based on JAVA or ABAP development stacks or by using visual toolsets.   JAVA development is done using SAP Netweaver Developer Studio which is based on the Eclipse IDE.  There are two main styles of JAVA development: JSPDynPage model or WebDynpro model.  The first is pure JAVA, the second is designed to speed up development with some JAVA and some Configuration/Visual development.  ABAP development can be done using SE80 and writing a BSP or I beleive you can run a JAVA and ABAP stack for your portal.  .NET development of iViews can be done using the SAP Netweaver Developer Studio for .NET.  Visual development can be accomplished using Visual Composer (I would stay away from this until 2.0 comes out).
    My company has been successful deploying Business Packages, configuring SSO to systems, custom iView creation to R/3, BW, and ITS, custom JAVA development, BSP development. 
    We have also experimented with deploying our own web applications on the WAS and may move all JAVA development onto the WAS for hosting. 
    To take an exisiting web app and truly make it a portal app you would have to rewrite quite a bit of the front end.  You could almost completely separate out the back end of the app from the front end.  You would have to rewrite the front end of the app and possibly redesign the app to take advantage of portal functionality (eventing, centally managed styles, etc).
    Another option besides a full rewrite of the app is just to create a url iView (basically an IFrame) to your existing application.  This way it is in portal and then you can take advantage of Roles and security.  With this option though, the portal doesn't control the display of the app (if your buttons and color are different they will remain different).  This is nice for working with a vendor app.
    Yet another option would be to integrate the app enough to take advantage of portal events.  To do this you would write a quick custom Portal application to accepts events and call your app with parameters.  With this option though the portal doesn't control the display of the app.
    Sorry for the book, but you asked a few open ended questions, which, there probably are books out there to cover.  I know I only touched on a few of the capabilities.

  • What to consider when migrating from 9.0.3.4 to 10.1.3.3?

    Hi!
    I need to migrate a few applications from JDev 9.0.3.4 to 10.1.3.3. Among those applications, I've got Uix, BC4J and Struts frameworks.
    I've been researching a lot about this migration, and as far as I can understand it sounds like a big hassle, as I'll have to consider rewriting big part of the code, specially when it comes to UIX framework.
    I'd like to ask if anyone has got into a similar task, or has enough knowledge to tell me what tasks I need to consider when executing this migration?
    Thank you in advance!

    You will be stuck redoing all of your uix pages into JSF, the tool that Oracle provides to do the conversion really does not work well at all. Its worth the work though, JSF is a big improvement over UIX, and there is a lot more documentation for the JSF stuff.
    Good luck on your task.
    Kelly

  • I want to use migration asst to transfer stuff from our old Windows...what do I not want to transfer?

    Iwant to use migration asst to transfer stuff from our old Windows PC to this new IMAC. What do I not want to transfder?

    QuickBooks for Mac has been available again since at least 2004 (Intuit before that had done nothing with it for years). The current version is QB for Mac 2014. It's pretty much the same price no matter where you look.
    The Mac version data is not directly compatible with the Windows version. Sending your data out to your business tax accountant and getting it back in is not at all easy. It's such a pain, our accountant comes here to finalize the books at year end.
    There is still also a lot of Windows features for QB Pro which have never been added to the Mac version. They're all on the higher end side that larger businesses would need. I've never run into anything with the Mac version I couldn't do.
    If your accountant wants ease of data transfer, then you'd be better off purchasing Snow Leopard Server and run that in Parallels. Then run the Windows version of QB in that.

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

  • I need  add isupplier portal in 11.5.4 release install

    Hello,
    I need install isupplier portal in some installation 11.5.4. In this installation haves others modules, but this doesn't exist.
    I need somebody said me, what is the document that I have use to add this module
    Thanks

    I read the threads which are now archived called "Cluster Just Doesn't Work"....I just got a Quad with Leopard 10.5.1, Clean install of FCP, my rendering machine is Dual 2.5 G5 running 10.4.11 with updated FCP.
    My Quad is hardwired (ethernet port) to Airport Extreme (non N model) the G5 receives data to be rendered via wireless airport card...for me the lads in "Cluster Just Doesn't Work" who were trying to help a guy with 5 mac mini's that he was trying to cluster layed it all out very clearly...Good luck it sure is sweet when it works.

Maybe you are looking for