Moving database 9i 32-bit to to be 10g on new hardware 64-bit

Dear Gentlemen,
I want to move a database 9.2.0.4.0 on windows server 2003 32-bit (Size=16GB) to be database 10G R2 on a new hardware with a windows server 2003 64-bit.
can you explain the steps which i have to do to perform this issue?

Catalonia wrote:
Dear Mr. N Gasparotto,
I'm very noisy, i'm a new to database administration, so can you explain what the database files that i have to copy from the old hardware to the new hardware before doing database upgrade + the location of the database files ?
I know that very noisy, but it's a production Environment.You should be able to see all the datafiles names and path from the V$datafile,
BANNER
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
PL/SQL Release 11.2.0.1.0 - Production
CORE    11.2.0.1.0      Production
TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production
SQL> select name from V$datafile;
NAME
D:\APP\ARISTADBA\ORADATA\ORCL112\SYSTEM01.DBF
D:\APP\ARISTADBA\ORADATA\ORCL112\SYSAUX01.DBF
D:\APP\ARISTADBA\ORADATA\ORCL112\UNDOTBS01.DBF
D:\APP\ARISTADBA\ORADATA\ORCL112\USERS01.DBF
D:\APP\ARISTADBA\ORADATA\ORCL112\EXAMPLE01.DBF
SQL>PLease spend some time reading the Administrator guide if you are new to DBA world. You would be immensely beneficial from it.
HTH
Aman....

Similar Messages

  • Is it possible to install oracle developer suite 10g in windows 7(64 bit), I have tried to install but failed so. Though, database 11g gets install in Windows 7.  If possible, Kindly provide me the website link.

    Is it possible to install oracle developer suite 10g in windows 7(64 bit), I have tried to install but failed so. Though, database 11g gets install in Windows 7.
    If possible, Kindly provide me the website link.

    Pl do not post duplicates
    Is 1GB ram is enough for the installation of oracle developer suite 10g and database 11g??? And which one to install fi…
    I want to install oracle database 11g and oracle developer suite 10g (latest) in my system. As i'm quite new to oracle ,…
    Continue the discussions in your original threads

  • Problem in moving database to new host

    Hi,
    I'm moving database from linux to windows and it perfectly moves as there is no endian formate issue between two OS. Now my problem is when I run below script
    RUN
    SET NEWNAME FOR DATAFILE 1 TO 'C:\app\Administrator\oradata\orcl\system01.dbf';
    SET NEWNAME FOR DATAFILE 3 TO 'C:\app\Administrator\oradata\orcl\undotbs01.dbf';
    SET NEWNAME FOR DATAFILE 2 TO 'C:\app\Administrator\oradata\orcl\sysaux01.dbf';
    SET NEWNAME FOR DATAFILE 4 TO 'C:\app\Administrator\oradata\orcl\users01.dbf';
    SET NEWNAME FOR DATAFILE 5 TO 'C:\app\Administrator\oradata\orcl\example01.dbf';
    SET NEWNAME FOR DATAFILE 6 TO 'C:\app\Administrator\oradata\orcl\apps_data01.dbf';
    SQL "ALTER DATABASE RENAME FILE
    ''D:\test\redo01.log''
    TO ''C:\app\Administrator\oradata\orcl\redo01.log'' ";
    SQL "ALTER DATABASE RENAME FILE
    ''/u01/app/oracle/oradata/orcl/redo02.log''
    TO ''C:\app\Administrator\oradata\orcl\redo02.log'' ";
    SQL "ALTER DATABASE RENAME FILE
    ''/u01/app/oracle/oradata/orcl/redo03.log''
    TO ''C:\app\Administrator\oradata\orcl\redo03.log'' ";
    SET UNTIL SCN 743262;
    RESTORE DATABASE from 'C:\app\Administrator\flash_recovery_area\ORCL\backupset\2010_10_03\o1_mf_nnndf_TAG20101003T121537_6bjcf7bj_.bkp';
    SWITCH DATAFILE ALL;
    RECOVER DATABASE;
    datafiles get renamed successfuly but it gives error on remaning redolog files as error stack of RMAN is given below
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    executing command: SET NEWNAME
    sql statement: ALTER DATABASE RENAME FILE''D:\test\redo01.log''TO ''C:\app\Admin
    istrator\oradata\orcl\redo01.log''
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of sql command on default channel at 10/06/2010 20:30:43
    RMAN-11003: failure during parse/execution of SQL statement: ALTER DATABASE RENA
    ME FILE'D:\test\redo01.log'TO 'C:\app\Administrator\oradata\orcl\redo01.log'
    ORA-01511: error in renaming log/data files
    ORA-01516: nonexistent log file, datafile, or tempfile "D:\test\redo01.log"
    Now I have created all dummy redolog to redo01.log,redo02.log and redo03.log on location D:\test, but it is still giving errors
    what could be the problem of this as it seems that RMAN can rename files that it get from backupset but unable to read redolog files on the given path. I'm using 11gR1.
    Looking for reply
    Regards,
    Usman

    Dear user8812764,
    Welcome to the OTN forums.
    Please see the error explanations;
    ORA-01511: error in renaming log/data files
    Cause: An error occurred during the ALTER DATABASE RENAME FILE command.
    Action: Check the error stack for detailed error information.So now you need to check the accompanying error;
    ORA-01516: nonexistent log file, datafile, or tempfile "string"
    Cause: An attempt was made to use ALTER DATABASE to rename a log file, datafile, or tempfile; or to change attributes of a datafile or tempfile (e.g., resize, autoextend, online/offline, etc.); or to re-create a datafile. The attempt failed because the specified file is not known to the database's control file or is not of a type supported by the request.
    Action: Specify the name or number of an existing file of the correct type, as appropriate. Check the relevant V$ table for a list of possible files.By the way why do you have different redolog for group 1?
    SQL "ALTER DATABASE RENAME FILE
    ''D:\test\redo01.log''
    TO ''C:\app\Administrator\oradata\orcl\redo01.log'' ";
    SQL "ALTER DATABASE RENAME FILE
    ''/u01/app/oracle/oradata/orcl/redo02.log''
    TO ''C:\app\Administrator\oradata\orcl\redo02.log'' ";
    SQL "ALTER DATABASE RENAME FILE
    ''/u01/app/oracle/oradata/orcl/redo03.log''
    TO ''C:\app\Administrator\oradata\orcl\redo03.log'' ";There should be really an inconsistency here with your redolog naming conventions.
    Hope That Helps.
    Ogan

  • Moved database to new server, not sure about NT AUTHORITY\* users

    I just moved database to new instance of SQL Server (SQL Server 2012 Web from Amazon EC2) and am now cleaning up database users.
    I am not sure if/why these 2 users are needed (they exist in original database that someone else created and managed before me):
    NT AUTHORITY\IUSR
    NT AUTHORITY\NETWORK SERVICE
    Note that there are also 2 database schemas with exactly the same names. These schemas do not contain any objects.
    I am more clear on NT AUTHORITY\IUSR - this seems to be a user for IIS and IIS is not even installed on new instance (IIS will not be used). So this one probably can be deleted (together with matching schema?).
    I am not sure about NT AUTHORITY\NETWORK SERVICE (or how it got created to begin with - new databases created on new server don't have it. Newly created databases don't have NT AUTHORITY\IUSR either).
    Neither of these 2 users exist at server level on a new instance or on an old instance.

    BOL says
    Local System account. The name of this account is NT AUTHORITY\System. It is a powerful account that has unrestricted access to all local system resources. It is a member of the Windows Administrators group on the local computer, and is therefore a member of
    the SQL Server sysadmin fixed server role
    Network Service account. The name of this account is NT AUTHORITY\NetworkService. It is available in Microsoft Windows XP and Microsoft Windows Server 2003. All services that run under the Network Service account are authenticated to network resources as the
    local computer.
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Moving Database files in 10.2.0.1

    Does anyone know the easiest way to move an entire set of database files (control,datafiles,redo,archive,bdump,cdump,etc) from say the E: drive on a windows sever to an S: drive on a SAN that the instance can connect to?? The directory strcuture would remain the same just the volume name and physical disk would change.
    I am assuming I could perform a cold backup of all the files over to the S: drive directory and then somehow perform a series of ALTER SYSTEM/DATABASE commands to rename and/or point to the new location correct? Can I do this with the TEMP, SYSAUX and SYSTEM datafiles? Probably involves changing init.ora parameters too.

    The name of the datafile includes the Volume name so you cannot change the name dynamiccaly of the system tablespace as it cannot be taken offline...
    look at the below link which will help you
    Always backup the DB before and after the execercise....
    Make sure to make changes in the init.ora to point the new direcory for archive log,controlfile,dump directories
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96521/dfiles.htm#7622
    Message was edited by:
    Maran Viswarayar

  • OWB 10g Release 2 from 32 bit to 64 bit on Linux

    Hi guys,
    I have a client who is planning to migrate their Linux server from 32 bit to 64 bit and migrate their Oracle database from 10.2.0.3 from 32 bit server to 10.2.0.3 from 64 bit server.
    We have OWB 10g Release 2 (10.2.0.3) installed in the 32 bit server.
    Our DBA is planning to move the entire database to the new server including the OWB repositories.
    My question is,
    Will the following work?
    1. Install the OWB 10g Release 2 (10.2.0.3 or 10.2.0.4) 64 bit in the new 64 bit Linux 64 bit server
    2. Remove all the OWB repository user schemas & roles from the database where OWB is installed
    3. Install the OWB repository in the new 64 bit server
    4. Import the .mdl backup of the project from existing OWB 32 bit to the new OWB 64 bit server
    5. Configure the project with the new server
    OR
    Since our DBA is planning to move the entire database to the new server including the OWB repositories
    1. Install the OWB 10g Release 2 (10.2.0.3) 64 bit in the new 64 bit Linux 64 bit server
    Will I be able to access my repository that is migrated from the 32 bit server (avoiding the installation of OWB repository and importing the project and configuring the whole project in the new server) ?
    Please someone shed some light on this. Your help is appreciated
    Thanks in advance....
    Edited by: user528846 on Feb 11, 2010 11:59 AM
    Edited by: user528846 on Feb 11, 2010 11:59 AM

    Does this mean, ... we have to install the OWB 64 bit and install a new repository in the 64 bit server?In my opinion you don't need to create new repository.
    After migrating database to 64bit perform steps from Metalink note 434272.1 "How To Update Warehouse Builder 10.2 After A Database Cloning".
    It is better to save the same path for new OWB 64bit software. If you install OWB into different path you need to update OWBRTPS table with new path to OWB software (look at metalink note 550271.1).
    Regards,
    Oleg

  • Oracle gateway for Oracle 10g DB on Windows 64 bit server

    Is there any place that I can find Oracle dateway for Oracle 10g DB on Windows 64 bit server? I can only find Gateway for Oracle 11g on Windows 32 bit server. Please help me to identify this. Thanks.

    yingkuan:
    Thanks a lot. The link tells the details. It seems that Oracle has not release Gateway for Oracle database 10.2.0.x on Windows 64 bit server. Probably they don't do it.
    So under this circumstance, if I want to install Gateway (32 bit) on Oracle 10.2.0.3 DB on Windows 64 bit server for Teradata, I probably have to install Gateway software in another Oracle Home, then configure it right. Please give more advice on this. 32 bit Gateway will work for 64 bit database?

  • Mapping a database formely in 9i to run in 10g

    I have migrated my database from 9i to 10g, have also compiled forms in 10g and configured my formwebs and tnsnames which I suspect am not getting right.
    how do I point my migrated database in from 9i to run in 10g and still using the former URL that was being used by users in 9i without moving all over the place changing URL?

    I didn't read your other threads, but the behaviour you're describing is not normal, so I'm guessing you have export file size problems. You could try re-exporting your 9i DB using filesize option :
    C:\> exp \"/ as sysdba\" file=orcl1.dmp,orcl2.dmp,orcl3.dmp,orcl4.dmp,orcl5.dmp,orcl6.dmp,orcl7.dmp full=y filesize=2000M log=orcl,log

  • ¿Does a 11g Oracle Client (64-Bit) Work With a 10g Server?

    Hello, good afternoon!!!
    I have a question: ¿Is it OK to use Oracle 11g Client (64-Bit) with a Oracle 10g Server?
    Thank you so much!!!

    Hello...
    Information:_
    Server: Oracle Database 10g Release 10.2.0.1.0
    Client: Oracle Database 11g Release 2 Client (11.2.0.1.0) (64-Bit)
    Thank you so much for your help!!!

  • I downloaded the 64 bit version of Photoshop and I need the 32 bit and I cannot download it

    I downloaded the 64 bit version and it says my computer cannot support that. Dealing with your layers of customer service is frustrating and at this point I am going to shop the credit card payment for this product. I want my money back.

    here's the 32 bit installer, 2014 release of Photoshop CC: Separate 32-bit/64-bit installation
    Return, cancel, or exchange an Adobe order

  • How to Install 64-bit "Generic / Text Only" print driver on a 32-bit Windows 2003 Server?

    Hi All,
    In a nutshell, I need to Install the 64-bit Generic / Text Only print driver on a 32-bit Windows 2003 Server’s “Generic / Text Only 32-bit print queue.
    The problem is that there is no Driver-Disk to get the drivers. I’ve been able to isolate 14 files related to the 64 bit drivers from a Windows 7 x64 computer and copy them to a temp folder on the Windows 2003 x32 server. When I try to add the 64 bit driver
    to the Windows 2003 x32 server,  it wants a *.inf file, which I don’t have and can’t find.
    Because Microsoft will no longer support Windows XP, my client is replacing all of their Point-of-Sale Windows XP x32 systems with Windows 7 x64. They use Terminal Services (Remote Desktop) to connect to a Windows 2003 x32 server to use the POS system. The
    POS software redirects LPT1 back to the local Generic / Text Only printer. This works great for XP x32.
    When we use the Terminal Services POS software on the new Windows 7 x64 system, none of the labels print out because it’s redirected in 32-bit back to the local Windows 7 x64 Generic / Text Only 64-bit printer.
    This will be a huge issue for me if I can’t get this to work.
    Thanks in advance for any suggestions and help! -Rob

    those may be helpful...
    http://social.technet.microsoft.com/Forums/en-US/a129f49a-0216-41f0-b190-3efb46fbb8ac/generic-text-only-driver-on-windows-2008-server-r2?forum=winserverprint
    http://blogs.technet.com/b/yongrhee/archive/2009/09/14/how-to-add-64-bit-print-drivers-on-32-bit-windows-server-2003-or-windows-server-2008-print-server.aspx
    Best,
    Howtodo

  • Will MS Office Standard 2011 for MAC 32-bit work on my MacBook Pro which is 64-bit?

    Will MS Office Standard 2011 for MAC 32-bit work on my MacBook Pro which is 64-bit?

    MacOffice 2011 will run on your computer. 32 bit software runs on a 64 bit computer.

  • Can someone help me find a workaround to get flash to work in XP Pro 64 bit, like there is a workaround for vista 64 bit?

    Can someone help me find a workaround to get flash to work in XP Pro 64 bit, like there is a workaround for vista 64 bit?
    I am trying to get rid of all my 32 bit apps because the more of them you run in 64 bit the less resources are available.
    Firefox has a 64 bit browser they call the Shiretoko build. I love it, it's twice as fast as a heavily tweaked 32 bit firefox. Java has a 64 bit plugin that works with it.
    The last holdout is Adobe.
    Microsoft is making Vista and Win 7 64 bit as easy and smooth as the 32 bit versions as a means to get people to start using them.
    Linux has a way to make flash work with 64 bit.
    Remember when we all had a 16 bit operating system and how much better things got with 32 bit?
    Adobe, it's time!.. don't you see that?
    Can someone help me solve my problem? Please?

    lostchild wrote:
    sorry but that doesnt help my options the guy i called said they discontinued the audigy 4 and 2. I dont know why he would say that but he said his supplier cant get them. Are they really discontinued? Also, isnt the audigy 2 zs or whatever its called for notebooks? i cant use an external one. Well not that i cant, i dont want to. I just want a good sound card mounted into my computer...
    Thanx in advance.
    no the audigy 2 zs is pci based. they have another called audigy 2 zs notebook and that's the one for laptop. if you can't find it from your vendor, you can always try getting it from someone else.

  • How on earth do I update my Apple ID to my new email address? I keep getting moved to 'change my password' sites, but I have a new email address and  need to update my Apple ID.

    How on earth do I update my Apple ID to my new email address? I keep getting moved to 'change my password' sites, but I have a new email address and  need to update my Apple. Frustrated!!

    Firstly, if you have 'Find My iPhone/iPad/iMac' enabled on any of your devices, turn it off.
    Create a new email address, for example  at Yahoo or Gmail, or anywhere convenient (or you can use an existing address as long as it has never been associated with an Apple ID).
    Go to http://appleid.apple.com and click 'Manage your Apple ID'. Sign in with the current ID.
    Where it says 'Apple ID and primary email address' and gives your current ID email address, click 'edit'.
    Enter your new address and click 'Save changes'.
    Now you will need to go to each of your devices and sign out in System Preferences (or Settings)>iCloud - 'Sign out' on a Mac, 'Delete this account' on an iOS device (this will not delete the account from the server).
    Then sign back in with your new ID. Your iCloud data will disappear from your devices when you sign out, but reappear when you sign back in.
    I re-iterate: before you start, turn off 'Find My Mac' (or whatever) or you will need the services of Support.

  • How can I install the 32-bit version of Lightroom 4.4 on my 64-bit Windows 7 system?

    I need to install the 32-bit version of LR 4.4 on my 64-bit Windows 7 system because, for some reason, LR 64-bit is not compatible with something in my computer system.
    How can I make this happen?
    Thanks,
    Mary

    The first stage of the installation process for a download is to extract all the installation files into an "Adobe" folder. Go find that folder and look inside, and down at the bottom level of the folder hierarchy are two files: Setup32.exe and Setup64.exe. So uninstall the 64bit version and double-click on "Setup32.exe" to install the 32 bit version.
    BTW, what problems are you having with the 64 bit version?

Maybe you are looking for