Migrate 32-bit 10.2.0 to 64-bit 10.2.0

Hi,
Anyone did this before? I have a method which uses exp/imp utility to migrate and is successfully in my test environoment. But in production, the datasize is so large that I need more than 2 days to exp then imp to the 64-bit. Anyway that this can be done incrementally?
My new 64bit database name is the same as old 32bit database name, so for my previous method, I can up and down one database at a time.
But understand that database name and the server name can be changes also, will try it if there a incremental way of migrating from 32-bit to 64-bit.

I'm using windows 2003 for both database server.
Could not have Doc ID 403522.1. Try google in oracle.
Will try to understand this http://docs.oracle.com/cd/B19306_01/win.102/b15688/create.htm#NXQRF152. It mention about copy the configuration files? What are they?
Logfiles, Controlfiles, init.ora, tnsnames.ora, listener.ora? Is that all? My database installation is the basic, never change much configuration.
Sorry Not a DBA. Using datapump is it same as exp and imp? It works fine, just that it took too long to complete due to the size. I have around 50GB of datafiles.

Similar Messages

  • Oracle Appcation R12.0.6 migration from 64 bit RHEL 5.3 to 32 bit RHEL 4.4

    Hi,
    Woul it be possible to migrate Oracle Appcation R12.0.6 migration from 64 bit RHEL 5.3 to 32 bit RHEL 4.4?
    Thanks

    Hi,
    Please see these threads.
    Migration/cloning from 64 bit to 32 bit !!!!
    Migration/cloning from 64 bit to 32 bit !!!!
    11i: Can you clone from 64-bit to 32-bit?
    11i: Can you clone from 64-bit to 32-bit?
    Thanks,
    Hussein

  • MDT 2012 to Migrate from Windows 2003 32 Bit to Windows 2012 R2 64 Bit

    I have used MDT for so long however only for client OS upgrade - XP to Windows 7/8.
    We wish to use MDT to migrate from Windows 2003 32 Bit to Windows 2012 R2 64 Bit. All servers are virtual on HyperV or VMWare - plan is to use USMT hardlink Migration.
    Is this supported? Has anyone used this for server migration?
    Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"

    Thanks Keith for your reply.
    Even is USMT does not work, we are ok. SMIGdeploy will be helpful.
    Basically, want MDT to run some scripts on the Windows 2003 server, post which install Windows 2012 and join it to the existing domain with the same computer name.
    Then hydration kit to help with the installation of features etc. Also, we would like to take a complete backup to a WIM before migrating.
    I am sure this is workable.
    Regards, Vik Singh "If this thread answered your question, please click on "Mark as Answer"

  • Tuxedo Migration from Tuxedo 9.1 32 bit to Tuxedo 9.1 64 bit

    Hi All,
    Please tell me how to go for Tuxedo Migration from Tuxedo 9.1 32 bit to Tuxedo 9.1 64 bit. O.S. is IBM AIX 5.3 64 bit What are the prerequisite, and how to go for that. Please tell hoe to go for the same. Please mail at [email protected]

    Ravi,
    You will need to download 64-bit AIX binaries for Tuxedo 9.1.
    Since 64-bit object files and libraries cannot be combined with 32-bit object files and libraries in the same executable, you will also need to obtain 64-bit versions of any database or other third party software that is linked with your Tuxedo application. (If you are using Oracle database, 64-bit and 32-bit support is combined in a single download, and you will just need to change $ORACLE_HOME/lib32 to $ORACLE_HOME/lib in your makefiles.)
    Once this is done, you will need to rebuild your Tuxedo servers, clients, and TMS processes.
    If you use buildclient and buildserver to compile all files, then you may not need to change anything else. If you call the compiler directly to compile source files into object files, then you will need to add additional flags for 64-bit compilation. If your makefiles are well-coded, you might just need to change CFLAGS in one place. Look at the output of "buildclient -v" for a simple client on the 32-bit system and on the 64-bit system to see which additional flags might be needed.
    When your application is compiled in 64-bit mode, you just need to test it out to ensure that the application does not have any implicit 32-bit dependencies such as assuming that a "long" is the same as an "int".
    Ed

  • Moving a 32 bit Oracle 9i database to 64 bit on a different server

    Hello,
    We have a 24 GB database with Oracle 9.2.0.7 (32 bit). As the hardware of this server is getting obsolete, it is planned to move this instance to another server, which has 64 bit Oracle software of same version (9.2.0.7). In this scenario what is the best way to move the instance?
    Is it only the full export from 32 bit server and import into 64 bit server(after creating the instance there)?
    Since this is a 24 GB database, and target server is 8 gb of ram, any pointers on how long the import process can take?
    There is a documentation to change word size, I can run utlirp.sql as suggested here:
    http://www.orafaq.com/forum/?t=rview&goto=258668#msg_258668
    But I have some doubts as I mentioned in that post. Can you please share your suggestions?
    Thanks,
    Nirav

    Hi
    Is there some document or steps to follow when creating the instance on the new server The database move is easy, and here is one way to move the schema, fast:
    http://www.dba-oracle.com/oracle_tips_db_copy.htm
    And then, you just run the script to change the wordsize for 64-bit:
    Also, after your migration, watch out for common performance issues:
    http://www.dba-oracle.com/t_bad_poor_performance_upgrade_migration_32_64_bit.htm
    Also, note that Oracle has changed the optimizer costing model from "IO" to CPU" in 10g, and shops that combine an upgrade to 64-bit servers with a 10g migration may want to look at changing the new default for _optimizer_cost_model.
    Going 64-bit means that you can now allocate very large RAM data buffers and increase your shared_pool_size above two gigabytes. However, it is important to remember that there are downsides to having a super-large db_cache_size. While direct access to data is done with hashing, there are times when the database must examine all of the blocks in the RAM cache. These types of database may not always benefit from an upgrade to a 64 bit server:
    Systems with high Invalidations: Whenever a program issues a truncated table, uses temporary tables, or runs a large data purge, Oracle must sweep all of the blocks in the db_cache_size to remove dirty blocks. This can cause excessive overhead for system with a db_cache_size greater than 10 gigabytes.
    High Update Systems: The database writer (DBWR) process must sweep all of the blocks in db_cache_size when performing an asynchronous write. Having a huge db_cache_size can cause excessive work for the database writer. Some shops dedicate a separate, smaller data buffer (of a different blocksize) for high-update objects.
    RAC systems: Oracle RAC and Grid does not perform optimally with super-large data buffer RAM, as available in 64-bit systems. You may experience high cross-instance calls when using a large db_cache_size in multiple RAC instances. This inter-instance "pinging" can cause excessive overhead, and that is why RAC DBA's try to segregate RAC instances to access specific areas of the database. This is why Oracle 10g grid server blades generally contain only 4-gig RAM.
    Hope this helps. . .
    Don Burleson
    Oracle Press author
    Author of “Oracle Tuning: The Definitive Reference”
    http://www.dba-oracle.com/bp/s_oracle_tuning_book.htm

  • How to run D2k 32 bit Application on Windows 7 64 Bit

    Dear Friends
    How to run D2k 32 bit Application on Windows 7 64 Bit, Presently I am having a Application developed in D2k 32 Bit, and it is running smooth on Windows Visa and Windows Xp. but now OUr company are going for new Laptops having Windows 7 64 Bit.
    Is there any way to Solve this Problem, or I have to upgrade D2k , which will be a 6 month job.
    sandy

    Since Forms 6 was never certified on Vista, I will assume you don't care about using Oracle Support. If that's the case, getting Forms 6 to work on Win 7 would likey require similar steps as you took to getting it to work on Vista.
    At minimum, you would need to do the following:
    1. Start with Forms/Reports 6.0.8.11 (6i Release 2)
    2. Install the latest (last) patch (#17), bring the version to 6.0.8.26
    3. It may be necessary to relax or disable Windows UAC
    4. To run the executables, you have to right click on them and select Run As Administrator in order for them to work properly.
    THE ABOVE IS NOT A SUPPORTED CONFIGURATION
    Forms 6.x was desupported years ago. If you have not already begun to do so, you should probably be working on a migration plan in order to get you to a supported version. The latest version is 11.1.1.3, so you are far behind. All versions newer than 6.x are entirely web based. This means that you will no longer be able to use the Forms runtime on the client machines. Client machines will require an Oracle certified browser and JRE in order to run Forms. Certification information for Fusion Middleware 11 (includes Forms 11) can be found here:
    http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls
    FMw Product information can be found here:
    http://www.oracle.com/us/products/middleware/index.html
    Forms 11 information can be found here:
    http://www.oracle.com/us/products/tools/oracle-forms-161771.html
    http://www.oracle.com/technetwork/developer-tools/forms/overview/index.html

  • Install Oracle 10.2.0.1 (32 bit) on Windows Server 2012 (64 bit)

    Hello
    Can I install Migrate my database 10.2.0.1 (32 bit) to Windows Server 2012 (64 bit).
    I would like to install Oracle 10.2 server (32 bit ) on Windows Server 2012 (64 bit).
    Thanks

    It is not a supported combination (see the Certification tab in MOS) - so things may or may not work as advertised. Is there a reason to continue to use a desupported version of the database ?
    HTH
    Srini

  • Replacing a 32 bit primary server with a 64 bit

    I have two zcm11 servers. Our first server is a 32 bit and the second is 64 bit.
    The 32 bit server was our first server and the 64 bit was added later.
    I would like to remove the 32 bit server and install a new ZCM server, preferably with sp3.
    I'm not sure of the steps involved here or the best way to go.
    Is this difficult? Can my second (ZCM2) take over and I just pull out zcm1?
    Is this the way to go?
    https://www.novell.com/documentation...a/bj1yh9t.html

    Just restoring the CERTS and DB is not really the proper way to recover,
    though I do understand sometimes you must do what you must do.
    The disaster recovery guide has steps that cover everything to backup
    and restore. One key is that many config files exist that contain
    paths. If you restore to a server that has installed ZCM to a different
    path, there will be lots of cleanup that needs to be done in those files.
    Since the Default Path is ProgramFile, which varies on 32bit and 64bit
    boxes it gets tricky. If you had installed to a Non-Default path such
    as D:\ZENworks, then it really would not matter on the 32bit vs 64bit.
    On 5/27/2014 3:47 PM, Thomas Roberts wrote:
    > Are you saying that restoring the existing database to a new 64 bit machine
    > is not supported?
    >
    > If so, imagine a where a site (eg a smallish business) had a single server
    > 32 bit server that died. There was a backup of the ZCM certs and the
    > database.
    >
    > The site was faced wit the choice of deploying a new 32 bit server and
    > restoring their zcm or to pave way for future upgrades deploying a 64
    > server.
    >
    > If they chose the latter, what is their supported pathway to restore their
    > ZCM? Surely it isn't that they have to have a second server (incurring
    > additional costs) and "migrate".
    > A small business or a school with limited budget might find that method a
    > challenge.
    >
    >
    >
    >
    >>>> On 28/05/2014 at 12:09 a.m., in message
    > <[email protected]>, Shaun
    > Pond<[email protected]> wrote:
    >> Thomas,
    >>
    >> 32‑bit files vs 64‑bit files... you might get away with a bodge, but
    >> you'd lose any ability to get support in the future...
    Craig Wilson - MCNE, MCSE, CCNA
    Novell Technical Support Engineer
    Novell does not officially monitor these forums.
    Suggestions/Opinions/Statements made by me are solely my own.
    These thoughts may not be shared by either Novell or any rational human.

  • Cannot uninstall 32 bit iTunes on Windows 7 64 Bit

    Just got a new computer with Windows 7 64 bit. I transferred my programs over included the 32 bit version of iTunes. I want to install the 64 bit version, but when I run the 64 bit installer it gives me an error message that I have the 32 bit version and that I need to download the 64 bit version. I tried to uninstall iTunes from the Control Panel, but I get the same error. Can anyone help?

    Scraping a 32-bit iTunes out of a 64-bit system can be tricky.
    Perhaps let's first try this. Download and install the Windows Installer CleanUp utility from Microsoft:
    http://support.microsoft.com/kb/290301
    Now run the utility ("Start > All programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove".
    Quit out of CleanUp, restart the PC, and try another iTunes (64-bit) install. Does it go through properly this time?
    (If you get another error message on the reinstall attempt, let us know what that one says too.)

  • Error in installation of 64 bit 11g client on solaris sparc64 bit

    hi,
    i am getting below error while installing the 11g 64 bit client on solaris sparc 64 bit machine.
    following error is occurred while installing 64 bit oracle 11.2 client on Solaris 64-bit sparcv9 OS:
    Error in invoking target 'mkldflags ntcontab.o nnfgt.o' of makefile
    kindly assist.
    Thanks,
    -Shubhen

    user12052679 wrote:
    hi,
    i am getting below error while installing the 11g 64 bit client on solaris sparc 64 bit machine.
    following error is occurred while installing 64 bit oracle 11.2 client on Solaris 64-bit sparcv9 OS:
    Pl read the Install Guide to ensure you meet all of the pre-installation requirements - http://docs.oracle.com/cd/E11882_01/install.112/e24347/pre_install.htm#CIHFICFD
    Error in invoking target 'mkldflags ntcontab.o nnfgt.o' of makefile
    kindly assist.
    Thanks,
    -ShubhenHTH
    Srini

  • Errors running SQL Agent Jobs for 64 bit SSIS packages on a 64 bit server, but Source server 32 bit

    Hi,
    I can able ran the SSIS package in BIDS, since set to false in Run64BitRuntime property.
    Then I created SQL server Agent job I tried the following ways
    Step 1:
    Type is set as SQL Server Integration Services Packages,
    Run as - SQL Server Agent Service Account
    Package source - FileSystem
    then Execution option tab I selected 32 bit runtime
    and then run the job I am getting the below error
    Message
    Executed as user: CIT\svc_CS_SS2008Agent. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 32-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  7:29:17 AM  Error: 2013-11-28
    07:29:18.57     Code: 0xC0014020     Source: Example Connection manager "DataSource.DataExtract"     Description: An ODBC error -1 has occurred.  End Error  Error: 2013-11-28 07:29:18.57    
    Code: 0xC0014009     Source: Imports20_OAC_Gifts Connection manager "DataSource.DataExtract"     Description: There was an error trying to establish an Open Database Connectivity (ODBC) connection with the
    database server.  End Error  Error: 2013-11-28 07:29:18.59     Code: 0x0000020F     Source: DFT_Example ODBC_SRC Example [11]     Description: The AcquireConnection method call to the connection
    manager DataSource.DataExtract failed with error code 0xC0014009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.  End Error  Error: 2013-11-28 07:29:18.59    
    Code: 0xC0047017     Source: DFT_Example SSIS.Pipeline     Description: ODBC_SRC Example failed validation and returned error code 0x80004005.  End Error  Error: 2013-11-2
    Step 2:
    Type - Operating sytem (CmdExec)
    Run as - Sql Server agent service account
    Command - C:\Program Files\Microsoft SQL Server\110\DTS\Binn\dtexec.exe /FILE "D:\Example\Example.dtsx" /x86  /CHECKPOINTING OFF /REPORTING E
    then run the job I am getting the below error
    Message
    Executed as user: MIS\svc_CS_SS2008Agent. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  6:37:58 AM  Error: 2013-11-28
    06:37:58.94     Code: 0xC0014020     Source: Example Connection manager "DataSource.DataExtract"     Description: An ODBC error -1 has occurred.  End Error  Error: 2013-11-28 06:37:58.96    
    Code: 0xC0014009     Source: Example Connection manager "DataSource.DataExtract"     Description: There was an error trying to establish an Open Database Connectivity (ODBC) connection with the database server. 
    End Error  Error: 2013-11-28 06:37:59.01     Code: 0x0000020F     Source: DFT_Example ODBC_SRC Example [11]     Description: The AcquireConnection method call to the connection manager DataSource.DataExtract
    failed with error code 0xC0014009.  There may be error messages posted before this with more information on why the AcquireConnection method call failed.  End Error  Error: 2013-11-28 06:37:59.07     Code: 0xC0047017    
    Source: DFT_Example SSIS.Pipeline     Description: ODBC_SRC Example failed validation and returned error code 0x80004005.  End Error  Error: 2013-11-28 06:37:59.12     Code: 0xC004700C    
    Source: DFT_Example SSIS.Pipeline     Description: One or more component failed validation.  End Error  Error: 2013-11-28 06:37:59.16     Code: 0xC0024107     Source: DFT_Example     
    Description: There were errors during task validation.  End Error  DTExec: The package execution returned DTSER_FAILURE (1).Started:  6:37:58 AM  Finished: 6:37:59 AM  Elapsed:  1.373 seconds.  Process Exit Code 1. 
    The step failed.
    Note:
    My source server is 32 bit and development environment in 64 bit
    if anybody have idea please share your knowledge

    Hi BIRam,
    Based on the current information, the issue may be caused by the factor that the SQL Server Agent Service Account doesn’t have access to the MySQL server. Try to create a SQL Server Agent Proxy account that has sufficient permission on the MySQL server.
    In addition, also pay attention to the package protection level setting.
    For more information, please see:
    http://social.technet.microsoft.com/Forums/sqlserver/en-US/e13c137c-1535-4475-8c2f-c7e6e7d125fc/how-do-i-troubleshoot-ssis-packages-failed-execution-in-a-sql-agent-job?forum=sqlintegrationservices.   
    Regards,
    Mike Yin
    TechNet Community Support

  • I have Windows 7, but have only 32-bit ?...need 64-bit. How do I install 64-bit version? Am not computer savvy?

    I have Windows 7 on my computer. I keep getting messages when I want to do various things on my computer which say that I only have a 32-bit version of ???? and I need to update to a 64-bit version of ??? I am not computer savvy and do not understand 32-bit version of what they are talking about; nor, do I know how to update to the 64-bit version. Are they referring to my web browser, or what? And, how do I update to the 64-bit version. Do I have to buy different software, or what? Someone, please help me with this. It happened again today when I wanted to update my Java plug-in. Said I was using 32-bit, so would have to install both 32 and 64-bit version. I am confused.

    Firefox is currently only as a 32 bit application available.<br />
    A 64 bit Firefox version requires all plugins to be 64 bit as well and not many plugins have a 64 bit version.
    You shouldn't have any problem with running that 32 bit Firefox version on a 64 bit Windows platform.

  • How to use a 64-bit Matlab ActiveX in a 32-bit CVI?

    I have a CVI 9.0 and 64-bit MatLab R2012a installed on my PC together with 64-bit Windows 7.When I try to use "Create ActiveX Controller" wizard to use the Matlab ActiveX,a message went out says"The Type Library is not intended for use on Win32".Seems like it's because my CVI is 32-bit but my Matlab is 64-bit.So I wonder is there any way for me to use the MatLab ActiveX Controller?
    PS.I have been checked on this topic:http://forums.ni.com/t5/LabWindows-CVI/How-to-create-ActiveX-Control-in-LabWindows-CVI-2010/td-p/183...
    But it's not workong for me due to different CVI version.
    Thank you guys.

    Thank you for your reply.
    Does this means that it is still not possible to use the PDF ActiveX control in a x64 WinForms application?

  • How do i download itunes on one computer (64-bit) for a different computer(32-bit)?

    How do I download itunes on one computer (64-bit) for a different computer (32-bit)?  The download page automatically detects my computer as 64-bit, but I want to download the installer for a different computer that is 32-bit.

    I ended up changing the user agent reported by my web browser to fool the website into thinking I was using a different web browser. On Google Chrome, press Ctrl-Shift-I to open the Developer Tools, then click the gear in the lower-right corner of the window. Check "Override User Agent" then select "Internet Explorer 7" from the drop-down.
    Once upon a time, you could download the 32-bit version of iTunes from http://www.apple.com/itunes/affiliates/download/, but the download link hasn't been updated recently and points to an old version of iTunes.
    If, like me, you think Apple should provide a link to the 32-bit version from the main download page, I would recommend giving Apple your feedback.

  • 32 bit driver for windows 7 64 bit

    I have a  laserjet 1022 on my new Windows 7  64 bit,, works good.. I want to share the printer with XP 32 bit systems.. The 32 bit pcs connect up (somewhat) but dont print and get messages of death when trying to do a test page to the shared printer.. I read that I need to install the 32 bit drives on Windows 7 64 pc,, I found where to add the drivers in win 7,, but I need an .inf file of the 32 bit drivers.. The hp drivers i download so far just want to install..   Whats the process for getting the hp 32 bit drivers into the 64 bit system???

    Thanks for sharing your tip RatioCynic!  That's what this forum is all about!
    Happy printing!
    Thanks!
    Tara
    **Although I am an HP employee, I am speaking for myself and not for HP.

  • I inadvertently downloaded the 64-bit version and need the 32-bit version of Lightroom 6 upgrade.

    I inadvertently downloaded the 64-bit version and need the 32-bit version of Lightroom 6 upgrade. 
    i go to the download page and i dont see a 32 or 64 bit option.
    Please help!   Thank you,
    Carlos

    lr 6 is 64bit only, System requirements
    http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

Maybe you are looking for

  • Animated GIF in MIAW not so animated

    My stage has a handler that executes a shell Ping command which unfortunately is not asynchronous, this means the stage has to wait for a response back from the remote computer before it can proceed and that response could take as long as 30 seconds.

  • Why are fields in PDF blank on iPad?

    When I create an Adobe PDF form with fields that can be filled in, the form can be opened and seen on an iPad, but the fields that have been filled in are blank. Can this be corrected?

  • Is there any way to shut off roaming but still use wifi?

    I am going on vacation to the States this week and I would still like to use my iPhone without getting charged lots for roaming. I'm only going to be using my phone for games and music, not calling or texting. I'd also like to check my emails every n

  • Cost Center Missing in Income Statement Report

    Hello Gurus, At this moment we are facing a critical situation. We are currently running a Custom report which is based upon a Custom Multiprovider. The Multiprovider gets the data from a remote infocube, a virtual infocube and four info objects(All

  • Differences in Trial version and full version

    Hello all, Have a project that I have attempted to publish from a retail client to a trial server unsuccessfully...the sample that came with the trial published fine...the project I am publishing is currently in use on another fully licensed version