Steps to Copy a Database in SAP

Hi,
What are the steps to copy a database in SAP?
Thanks,
Sreekar.

Hi,
The steps of database copy are as below.
1. To make Database copy between two systems, you have to check file size on
Target System.
Use commands:
df -k
bdf (HP-UX)
2. On the Source System, check the files which are going to move.
Use commands:
su ora
svrmgrl
connect internal;
select name from v$controlfile;
select name from v$datafile;
select name from v$logfile;
3. Release all change requests on source system.
4. Shutdown database (Source system)
Use commands:
su - adm
stopsap
5. Copy the controlfiles, datafiles, logfiles from source system to target
system.
Backup via tar
ftp or rcp
For example: You can write a simple script.
rcp r src_server:/oracle/SRC/sapdata1 /oracle/TRG
rcp r src_server:/oracle/SRC/sapdata2 /oracle/TRG
rcp r src_server:/oracle/SRC/sapdata3 /oracle/TRG
or for backup
tar cvf /dev/ sapdata* dbs origlog* mirrlog*
6. Copy $Oracle_Home/dbs/init.ora parameter file from source system to
target system. Change all old SIDs to new SIDs except db_name parameter.
Save it with old SID name.
7. On the target system, change parameter /dbname= on
parameter file /usr/sap/trans/bin/TPPARAM
8. Change all owners and groups.
Use commands:
With root user.
cd /oracle/
chown R ora:dba sapdata*
chown R ora:dba origlog*
chown R ora:dba mirrlog*
9. Change the name of control files (cntrl.dbf) with new SID
10. Startup mount must work successfully.
Use command:
su ora
svrmgrl
connect internal;
startup mount;
11. Define new locations to database for data files and log files.
Use command:
su ora
svrmgrl
connect internal;
alter database rename file /old/file/name to /new/file/name;
12. Startup R/3 with startsap.
Use commands:
su - adm
startsap
13. If not start; see OSS note--> 8179 (grant connect to sapr3 identified by SAP)
14. Log on to SAP via SAP* user.
15. Run ST06 and set workbench organizer.
16. Install new license.
17. Change the spool server names on SAP system. (SPAD)
Reward points if found helpfull...
Cheers,
Siva.

Similar Messages

  • Steps to create LOGICAL DATABASE in sap

    hi guys,
    i have gone through many documents about LDB. But, i didnt get the steps to create a LDB.
    plz provide me with the steps to be followed to create a LDB.
    thnx,
    shivaa.

    Hi Shiva,
    This might help you!
    Logical database structures
    There are three defining entities in an SAP logical database. You must be clear on all three in order to create and use one.
    Table structure: Your logical database includes data from specified tables in SAP. There is a hierarchy among these tables defined by their foreign keys (all known to SAP), and you are going to define a customized relationship between select tables. This structure is unique and must be defined and saved.
    Data selection: You may not want or need every item in the referenced tables that contributes to your customized database. There is a selection screen that permits you to pick and choose.
    Database access programming: Once youu2019ve defined your logical database, SAP will generate the access subroutines needed to pull the data in the way you want it pulled.
    Creating your own logical database
    ABAP/4 (Advanced Business Application Programming language, version 4) is the language created by SAP for implementation and customization of its R/3 system. ABAP/4 comes loaded with many predefined logical databases that can construct and table just about any conventional business objects you might need in any canned SAP application. However, you can also create your own logical databases to construct any custom objects you care to define, as your application requires in ABAP/4. Hereu2019s a step-by-step guide:
    1. Call up transaction SLDB (or transaction SE36). The path you want is Tools | ABAP Workbench | Development | Programming Environment | Logical Databases. This screen is called Logical Database Builder.
    2. Enter an appropriate name in the logical database name field. You have three options on this screen: Create, Display, and Change. Choose Create.
    3. Youu2019ll be prompted for a short text description of your new logical database. Enter one. Youu2019ll then be prompted to specify a development class.
    4. Now comes the fun part! You must specify a root node, or a parent table, as the basis of your logical database structure. You can now place subsequent tables under the root table as needed to assemble the data object you want. You can access this tree from this point forward, to add additional tables, by selecting that root node and following the path Edit | Node | Create. Once youu2019ve saved the structure you define in this step, the system will generate the programming necessary to access your logical database. The best part is you donu2019t have to write a single line of code.
    Watch out!
    The use of very large tables will degrade the performance of a logical database, so be aware of that trade-off. Remember that some tables in SAP are very complex, so they will be problematic in any user-defined logical database.
    Declaring a logical database
    Hereu2019s another surprising feature of logical databases: You do not assign them in your ABAP/4 Code. Instead, the system requires that you specify logical databases as attributes. So when you are creating a report, have your logical database identifier (the name you gave it) on hand when you are defining its attributes on the Program Attributes screen. The Attributes section of the screen (the lower half) will include a Logical database field, where you can declare your logical database.
    Logical databases for increasing efficiency
    Why else would you want to create a logical database? Consider that the logical databases already available to you begin with a root node and proceed downward from there. If the data object you wish to construct consists of items that are all below the root node, you can use an existing logical database program to extract the data, then trim away what you donu2019t want using SELECT statementsu2014or you can increase the speed of the logical database program considerably by redefining the logical database for your object and starting with a table down in the chain. Either way, youu2019ll eliminate a great deal of overhead.
    Reward if useful.
    Thankyou,
    Regards.

  • Error in last step of copy database wizard

    Hi All,
    I am getting below mentioned error in copy database wizard. I am using SSMS 2012 to copy a database from one server to another server using attach and detach method. Been stuck in this issue for quite sometime. Please provide your insights...
    Event Name: OnError
     Message: An error occurred while transferring data. See the inner exception for details.
    StackTrace:    at Microsoft.SqlServer.Management.Smo.Transfer.TransferData()
       at Microsoft.SqlServer.Dts.Tasks.TransferObjectsTask.TransferObjectsTask.TransferExtraObjectsViaSmoTransfer()
    InnerException-->There is already an object named 'spt_values' in the database.
    StackTrace:    at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection, Action`1 wrapCloseInAction)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj, Boolean callerHasConnectionLock, Boolean asyncClose)
       at System.Data.SqlClient.TdsParser.TryRun(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean& dataReady)
       at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(TaskCompletionSource`1 completion, String methodName, Boolean sendToPipe, Int32 timeout, Boolean asyncWrite)
       at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
       at Microsoft.SqlServer.Management.Smo.Transfer.ExecuteStatements(SqlConnection destinationConnection, IEnumerable`1 statements, SqlTransaction transaction)
       at Microsoft.SqlServer.Management.Smo.Transfer.TransferData()
     Operator: EMEA\INCHEJAI
     Source Name: CDW_BIE-WV200_xxxx_xxxx_35
     Source ID: {xxx-xxx-xxx-xxx-xxx}
     Execution ID: {xxx-xxx-xxx-xxx-xxx}
     Start Time: 24.09.2014 10:38:37
     End Time: 24.09.2014 10:38:37
     Data Code: 0
    P.S - I am able to query and fetch the results for "select * from master.dbo.spt_values;"
    in both my SOURCE and DESTINATION databases. 
    But the table name is not visible under System databases--> master --> Tables --> System Tables in my DESTINATION database alone.
    Thanks,
    DeeJay007

    Hi,
    Thanks for your response :). When I tried to attach the the database (.mdf and .ldf) and create a new database in DESTINATION server, it works fine. Only using "Copy database wizard" I face this problem. I am attempting this functionality from
    the SQL Server 2012 instance
    The Instances are not in same version. Find the specific details below for @@Version.
    SOURCE Server Instance
    Microsoft SQL Server 2008 (SP3) - 10.0.5500.0 (X64) 
    Sep 21 2011 22:45:45 
    Copyright (c) 1988-2008 Microsoft Corporation
    Standard Edition (64-bit) on Windows NT 6.0 <X64> (Build 6002: Service Pack 2) (VM)
    DESTINATION Server Instance
    Microsoft SQL Server 2012 (SP1) - 11.0.3000.0 (X64) 
    Oct 19 2012 13:38:57 
    Copyright (c) Microsoft Corporation
    Standard Edition (64-bit) on Windows NT 6.2 <X64> (Build 9200: ) (Hypervisor)
    When you use the copy database functionality, your database gets upgraded to match the destination server version. The database cannot be downgraded, which is fine in your case. It could be a bug in the upgrade process between these two specific sql server
    versions though.
    Can you make a test with another destination instance, with the same version as the original destination (2012 SP1) just to rule out the possibility of system database corruption?
    Does this happen with only a single database, or does the wizzard fail for any database you try to copy?
    I have the "u_tables.sql" file which has the scripts for some master database tables. In the process of trying to rebuild the system database and if I lose the master DB contents, will executing the "u_tables.sql" be sufficient to restore
    the details?? Many DB's are available in the server, so the risk is very high.
    No. However, your application databases won't be affected. You'll lose all your server objects, including but not limited to logins, linked servers, backup triggers, server roles, etc. You'll also lose the contents of the msdb database (jobs, database mail
    configurations, backup history, maintenance plans, etc). Please refer to the article I sent you for more information. It contains safety instructions on how to backup most of these objects.
    Try to do the tests I suggested above before rebuilding your system databases.
    Is there any restrictions for "Copy database wizard" which I am missing here?
    No I dont think so. Based on the information you provided, it should be working.

  • Copying Production Database to another location

    Hi,
    We are currently upgrading to a 11g and as part of the process I need to copy our production server 10g to our new hardware. I want to carry out a couple of dry runs to get timings and test the process. I will be keeping the same SID.
    Are there steps I can take to isolate the copied oracle database to ensure it does not try communicate with any other systems.
    I come from an SAP background and in SAP there are a number of steps to isolate a system. I'm looking for similar steps that would be used in oracle e.g.
    stop job scheduler
    stop all inbound and outbound communication
    Lock interactive users
    Stop outbound email
    etc...
    Thanks
    Jim

    osheajim wrote:
    Hi,
    We are currently upgrading to a 11g and as part of the process I need to copy our production server 10g to our new hardware. I want to carry out a couple of dry runs to get timings and test the process. I will be keeping the same SID.
    Are there steps I can take to isolate the copied oracle database to ensure it does not try communicate with any other systems.
    I come from an SAP background and in SAP there are a number of steps to isolate a system. I'm looking for similar steps that would be used in oracle e.g.
    stop job scheduler
    stop all inbound and outbound communication
    Lock interactive users
    Stop outbound email
    etc...
    Thanks
    Jim
    Somwhat dependent on your method of creating the new database on the new server, but if you don't start a listener on that server, no one that is not directly logged on to that server will be able to connect to the database. As for outbound connections from the database, you might have to get a bit creative, depending on where and how the outbound connections are defined.  I'd start by not haveing a working tnsnames.ora file.  Then check the defintions of any db links in the existing database.  If they hard-coded destinations, make sure those destinations are un-resolveable/unreachable from the new server.  I wouldn't worry about the job scheduler during the dry run.  As long as there is no outside communication from them, who cares if they run?  With the listener shut down, no outside users can connect, so no reason to lock user accounts.
    Perhaps you could cover all bases at once by simply configuring the firewall on the new server to disallow any communication at all ...

  • Procedure for Standby Database for SAP ERP 6.0

    Hello All,
    We are using SAP ERP 6.0 with Oracle 10g with AIX 5.3.
    We are planning to setup a standby database for our SAP ERP 6.0 production system as part of remote DR site using Oracle Data Guard.
    I was under the assumption that i can first install an erp 6.0 (ABAP) system using homogeneous system copy from my erp 6.0 (ABAP) production system and then start configuring oracle dataguard.
    But the System Copy Guide "System Copy for SAP Systems Based on SAP NetWeaver 7.0 SR3 ABAP" has mentioned that "You cannot create standby systems with a system copy".
    Please suggest the best practise or the procedure for creating standby database for SAP ERP 6.0 system. Iam not looking at the steps for creating a pure oracle 10g standby database, but with SAP instances as well.
    Thanks in advance.
    CVS

    Hi,
    Please refer the below mentioned link for configuring data guard.
    http://www.stanford.edu/dept/itss/docs/oracle/10g/server.101/b10823/create_ps.htm
    Below mentioned are the sequence of stpes, which needs to be followed for setting up data guard.
    3.1 Configuring the Primary Database
    3.1.1 Enable archiving and define a local archiving destination
    3.1.2 Create a password file
    3.1.3 Configuring the Oracle networking files
    3.1.4 Set initialization parameters on the primary database
    3.1.5 Take Offline/Online backup of the primary database
    3.1.6 Create a control file for the standby database
    3.1.7 Prepare initialization parameter file for the standby database and start the primary database with the changed pfile.
    3.1.8 Copy all files from the primary host to the standby host
    3.2 Configuring the Standby Database
    3.2.1 Configuring the Oracle networking files
    3.2.2 Create a INIT parameter file for the standby database
    3.2.3 Copy the standby controlfile to the appropriate location
    3.2.4 Create Oracle Password File
    3.2.5 Start the physical standby database
    3.2.6 Initiate log apply services
    Regards,
    Ranjith

  • Installation hangs at step 18-Load Java Database Content

    Hi,
    I am trying to install NW04s WAS. No matter, how many times I uninstall & reinstall(after properly clearing registry entries by running supplied cleaner.exe,stop the Xserver services if running), the installation just doesn't progress at step 18- 'Load Java Database Content'.
    Here is what I did:
    I read other threads and checked from the SAP Management Console if the DB is online. It is online and the DB is not full.But the log and Data states are shown as 0%.
    Next, according to some threads I  removed the JDK 1.4.2_15 and installed 1.4.2_12 version.No use.
    I couldn't find any other threads with suggestions which could be of help to my issue.
    I am using windows vista home premium.I get some errors during installation but not during step 18. so I am not sure whether to consider those errors for this issue.
    <u>Following is the phase information:</u>
    PHASE 2007-09-22 15:40:18
    Prepare the installation program.
    WARNING[E] 2007-09-22 15:43:05
    Error converting from service name=sapmsJ2E/protocol=tcp to port number. SAPRETURN=12
    WARNING[E] 2007-09-22 15:44:47
    Error converting from service name=sapmsJ2E/protocol=tcp to port number. SAPRETURN=12
    WARNING[E] 2007-09-22 15:45:50
    Error converting from service name=sapmsJ2E/protocol=tcp to port number. SAPRETURN=12
    ERROR 2007-09-22 15:50:42
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPOsCol).
    ERROR 2007-09-22 15:51:12
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_01).
    ERROR 2007-09-22 15:51:12
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_01).
    ERROR 2007-09-22 15:51:12
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_00).
    ERROR 2007-09-22 15:51:12
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPJ2E_00).
    WARNING 2007-09-22 15:52:11
    While copying files to 'C:\usr\sap\J2E\SCS01\exe': source file 'C:\usr\sap\J2E\SYS\exe\run/icudt26.dll' not found.
    WARNING 2007-09-22 15:52:12
    While copying files to 'C:\usr\sap\J2E\JC00\exe': source file 'C:\usr\sap\J2E\SYS\exe\run/icudt26.dll' not found.
    ERROR 2007-09-22 15:52:31
    FSL-06002  Error 1060 (The specified service does not exist as an installed service.
    ) in execution of a 'OpenService' function, line (255), with parameter (SAPOsCol).
    WARNING 2007-09-22 15:54:12
    Execution of the command "C:\usr\sap/J2E/JC00/igs/bin/igswd.exe 'C:\usr\sap\J2E\JC00\igs' '-c' '-tracelevel=1' '-mux=Karthik-PC,40000' '-listenerhttp=40080' '-portwatcher=40001' '-portwatcher=40002'" finished with return code 1. Output:
    PHASE 2007-09-22 16:03:03
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2007-09-22 16:03:22
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2007-09-22 16:04:29
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2007-09-22 16:05:18
    Deploying SDAs (using SDM and SAP J2EE Engine).
    PHASE 2007-09-22 16:05:59
    SAP J2EE Engine
    PHASE 2007-09-22 16:06:09
    JLoad Run
    I have spent a lot of time to have this installed. Please somebody help.
    Thanks
    Karthik

    Hi Raja and Anatoliy Misyura  ,
    Thanks a lot for taking time to reply to my issue.
    1)I completely unistalled the previous version by running clearner.exe and stopping the services,removing sapdb folder etc.,
    2)Then I disabled my antivirus,firewall etc.,
    3)Installed jdk 1.4.2_11(after removed the previously tried version 1.4.2_12
    4)Ran the SAPInst installer
    But unfortunately still the installer stops at the same step!
    Don't know what's going wrong.....
    Raja- Can you tell me what is the windows OS version you have? Mine is home premium.
    Thanks
    Karthik
    Can you guys let me know if you have any other suggestions

  • Copy express add on  sap 8.8 -PLD coping problem

    Dear Experts
       While coping the PLD  from one database to another by using copy express ( sap 8.8 PL 00 ) only the empty layout (without any field) was creating. Pleas give the solution.
    Thanks

    Hi Ganesh,
    Try this,
    Here is a simple way to copy PLD from one Company to another Company
    Please follow these steps to copy PLD from one DB(Test DB) to another DB(Live DB)
    1. Login to the Test DB and open the PLD. Click on menu 'Print Layout Designer' and select 'Display Hidden Fields'
    2. Goto Edit Menu and select 'Select All'
    3. Copy All the fields (select copy from Edit Menu)
    4. Click on Administration and select Choose Company and login to the Live DB.
    Note: Donot Logoff from the Test DB)
    5. Open the PLD in Live DB. Click on menu 'Print Layout Designer' and select 'Display Hidden Fields'
    6. Goto Edit Menu and select 'Select All'
    7. Delete All the fields
    8. Now Paste the fieds which you copied from 'Test DB'.
    Note:
    Ensure that the Document Properties like Width, Height, Top Margin, LeftMargin etc.., are same before pasting in 'Live DB'
    OR
    Pls use Export and import method of sql database .
    there is a short way but it is not ideal, u can directly open the Rdoc and ritm table and copy the data related to particular PLD(document id) and paste into rdoc and ritm of new database respectively .
    Check the thread,
    Copy Express a PLD
    Re: Print Layout Designer
    Regards,
    Madhan.

  • Best practice approach for seperating Database and SAP servers

    Hi,
    I am looking for a best practice approach/strategy for setting up a distributed SAP landscape i.e separating the database and sap servers. If anyone has some strategies to share.
    Thanks very much

    I can imagine the most easiest way:
    Install a dialog instance on a new server and make sure it can connect nicely to the database. Then shut down the CI on the database server, copy the profiles (and adapt them) and start your CI on the new server. If that doesn't work at the first time you can always restart the CI on the database server again.
    Markus

  • How to move or copy a database to new server

    Greetings All,
    Oracle Enterprise 11g r2, on a Windows2008 platform.
    I would appreciate some advice regarding moving/copying a database to a new server. Some of the information below may not be pertinent to my goal. Please be patient as I am a newbie.
    I have installed oracle and created a database (prod03) on the new/target server. I created the same tablespaces (and datafiles/names) as are on the existing/source server (prod01), except that on the new/target server (prod03) there is 1 more data file for the USERS tablespace than there is on the existing/source server (prod01).
    My initial thought was to perform a expdp full=y.
    The database contains 220 schemas, when I performed an expdp full=y estimate only it indicated 220Gb. I think this would take much more time to export and then import than what I hope to be able to do below.
    I would like to be able copy the datafiles from the source server prod01 server over to the target server prod03, some names/locations will change.
    One scenario I found (http://www.dba-oracle.com/oracle_tips_db_copy.htm) was to backup the control file to trace on the old/source server (prod01). Copy everything to the new/target server. Tweak the file that creates the new control file.
    Step 4 of the above mentioned link says to change
    CREATE CONTROLFILE REUSE DATABASE "PROD01" NORESETLOGS to
    CREATE CONTROLFILE SET DATABASE "PROD03" RESETLOGS
    Notice the change from REUSE to SET. I am not sure if this is right for my situation.
    Could I issue a backup control file to trace on the target server (prod03), add the reference to the additional datafile. Copy over all of the datafiles for all of the tablespaces (users,system/sysaux/undotbs1,temp),
    Delete the existing control file, and generate the new control file.
    Then perhaps issue a startup resetlogs or startup recover?
    Thanks for your time,
    Bob
    Edited by: Snyds on May 17, 2012 12:26 PM

    So unless someone provides me with an rman script I can't use rman.google is your friend
    Simply telling someone to get the experience dose not help. So your post is useless to me.I suppose you do not have experience with "old-school" manual cloning as well.
    Import of entire 200GB DB with datapump or imp will also require some experience otherwise it will be a long-long exercise.
    So, basically, any advise may be useless to you, because of your "the fact is I don't have the experience. Nor do I have the time to obtain the experience."

  • EHP4 System copy of the existing SAP system

    Hi!
    In order to refresh our SAP ERP system with EHP4 we would like to execute a system copy of the existing SAP EHP4 system.
    This system should be installed on the existing server.
    Question:
    Which parts of the software (SAP, Oracle) do I need to delete before or can I rewrite the existing system with the exported EHP4 system?
    Any helpful information will be very appreciated!

    Hi!
    Many thanks for your reply.
    > 1. install MCOD
    > 2. Drop database and recreate
    The second option means the existing system/database will be rewritten by the new database.
    I have a double stack system (ABAP + Java Stack, including Portal)
    Question
    Does this option (Drop database and recreate) suit in my case (SAP system with double stack) or should delete old SAP system before installing the new one with SAPINST via system import?

  • Is copying a database possible

    Hey folks,
    I have a requirement from my manager to basically replicate an environment running on one Linux machine onto another. Lets say there are two machines A and B
    I have all my applications (these applications have a database running and some of them also require weblogic) on machine A.
    Now I want to replicate these applications in A on machine B. So my doubt is, if I copy the database folders from A to B, can I startup the database on machine B.
    Also, in case this method doesn't work out, can creating a dump of the database in A and importing the same in B work?
    Thanks

    Follow the steps here....
    After logging into target database, under maintenance tab, data movement header; ther is "clone database" option. When you click on it; you'll see :
    Clone Database uses RMAN to duplicate a database from:
    -- An open database in ARCHIVELOG mode, or
    -- An open database in NOARCHIVELOG mode (restart required), or
    -- A saved working directory from previous cloning
    Clone Database performs the following operations:
    -- Backup each database file and store it in a working directory
    -- Transfer each backup file from source to destination host
    -- Restore each backup file to existing destination Oracle Home
    -- Recover the cloned database with saved archived log files
    -- Open the cloned database with resetlogs
    Source https://forums.oracle.com/message/3596780

  • Steps to upgrade Oracle database from 11.2.0.3.8 to 11.2.0.4.0

    Hi Support,
    Could anyone please provide the steps to upgrade Oracle Database EE from 11.2.0.3.8 to 11.2.0.4.0.
    Thanks
    Imtiyaz

    You will need to install 11.2.0.4 into a new ORACLE_HOME, apply the latest 11.2.0.4 PSU patch to the new ORACLE_HOME (see MOS Doc 1454618.1) and then follow the steps in the Upgrade Guide
    http://docs.oracle.com/cd/E11882_01/server.112/e23633/upgrade.htm#UPGRD003
    see MOS Doc 1189783.1

  • Steps to upgrade oracle database from11.2.0.1 to 11.2.0.3 on Windows 2003 3

    Steps to upgrade oracle database from11.2.0.1 to 11.2.0.3 on Windows 2003 3

    Hi,
    Upgrade steps
    1. Install 11.2.0.3.0 rdbms software
    11.2.0.3 patch set is a full release.
    Beginning with the release 11.2.0.3 patch set, you have two ways to apply a patch set
    i)Out-of-place upgrade (Recommended) -- 11.2.0.3 will be installed as standalone at another location. So there is no impact on source oracle home and also DB upgrade will take less time
    See Note 1276368.1 : Complete checklist for out-of-place manual upgrade from 11.2.0.1 to 11.2.0.2 , it is applicable for 11.2.0.3 as well
    ii)in-place upgrade - 11.2.0.3 will be installed on top of 11.2 installation, So source oracle home will be replaced, Downtime will be high comparing out of place upgrade
    for more info, Please refer to
    Note 1189783.1 Important Changes to Oracle Database Patch Sets Starting With 11.2.0.2
    11.2.0.3.0 software can be downloaded from My Oracle support: patch 10404530
    https://updates.oracle.com/download/10404530.html
    Please select your platform before downloading (Click on "Platform or Language" drop down menu)
    if the platform name contains (32-bit) then it's 32-bit 11.2.0.3 client version
    To install 11.2.0.3, you must download both p10404530_112020_<platform>_1of7.zip
    and p10404530_112030_<platform>_2of7.zip
    <platform> = your platform( ie for linux x86, download p10404530_112030_LINUX_1of7.zip and
    p10098816_112030_LINUX_2of7.zip )
    Note 1194734.1 : Where do I find that on My Oracle Support (MOS) [Video]
    Note 549617.1 : How To Verify The Integrity Of A Patch/Software Download? [Video]
    Note 169706.1 : Oracle Database Installation and Configuration Requirements Quick Reference (8.0.5 to 11.2)
    2) Finish the post installation steps as per the patchset README (readme.html).
    3) upgrade the database to 11.2.0.3
    Kindly ensure source database has all Valid DB components(dba_registry) and there are no invalid sys/system objects
    Note 419550.1 : Different Upgrade Methods For Upgrading Your Database
    Note 837570.1 : Complete Checklist for Manual Upgrades to 11gR2 (applicable to 11.2.0.3)
    Note.870814.1 : Complete checklist to upgrade the database to 11gR2 using DBUA (applicable to 11.2.0.3)
    4) After db upgrade, you can apply PSU patch of 11.2.0.3, it will give latest bug fixes of 11.2.0.3
    The latest PSU patch is (Reference: Quick Reference To Patch Numbers For Database PSU, CPU And Bundle Patches (Doc ID 1454618.1))
    14727310 (11.2.0.3.5) Jan 2013 DATABASE 11.2.0.3
    Patch readme file has Installation instructions.
    Oracle Database Upgrade Path Reference List (Doc ID 730365.1)
    Thanks,
    Krishna

  • I want to create an external video widget with iAd. I followed the steps and copied the Url and paste it in the Video pop-up menu in the Properties section of the inspector. When i select 'preview' the video doesn't play and the Url that i pasted is gone.

    i want to create an external video widget with iAd to use in an iBook. I followed the steps and copied the Url and paste it in the Video pop-up menu in the Properties section of the inspector. When i select 'preview' the video doesn't play and the Url that i pasted is gone.
    hope someone can help!

    May have something to do with whether or not the URL can be reached while building your widget.  I've got a video on the web. When I enter the URL into the field for the video object and click to another field,  the URL is replaced with some text indicating that it is accessing the video then updates itself to displaying just the name of the video file.
    It shows just fine in preview and I can see the full path to the video when I export the widget so it should work for you. 
    Is the video accessible from your Mac while you're laying out your widget?
    -Mark

  • Asset Reporting - Copying Logical Database ADA

    Can you please assist with the following query?  I’m trying to include the following standard R3 ffields within standard R3 reports AR01 (Asset Balances) & AR18 (Depreciation Simulation):
                                    Table            Field Name            Data Element
    Serial Number            ANLA            SERNR                AM_SERNR
    Inventory Number       ANLA            IVNR                   INVNR_ANLA
    To date I have been unsuccessful in my endeavours.
    I have been discussing with an ABAPer and have been discussing the creation of Z transactions to give me the information I’m looking for.
    I’m looking for help, assistance and expertise whether the following would be recommended or even technically feasible.
    ·     Is it possible to copy logical database ADA to say ZADA (if yes how would I or the ABAPer go about this)?
    ·     Is there a way to link existing R3 reports to the new logical database
    As the majority of the R3 reports appear to be linked to ADA the aim is to amend this once and not require creating lots of Z reports.
    Any help you could provide would be greatly appreciated
    Best regards,
    Paul

    Hi Paul,
    this is strange, what release are you on?
    I have just checked AR01 on ECC 6.0, and it offers everything you need. On the selection screen of AR01, you can add selection criteria on both Serial number and Inventory number. Plus, you can display both fields in the ALV list.
    The data may be stored on table ANLA physically, but the logical database ADA is using a structure (ANLAV) instead. Both SERNR and INVNR are available in that structure. On the selection screen, you have to use the Dynamic selections button. And in the ALV list, you simply add the 2 columns, best idea wold be to save it as a variant for future use.
    Anyway, logical databases can be copied in SE36, you simply have to press the Copy button   The more critical issue is how to link standard reports to the new LDB. The answer is, no way. Instead, you should copy some of your favorite standard reports, and change the LDB in the copies.
    But, I really do not think you need this, as ADA can provide you with the information required out of the box.
    Hope that helps, points welcome
    Csaba

Maybe you are looking for

  • Audit SSO User

    How can I audit a SSO USER from login in OID to connect on a database i.e. which SSO USER is connected with the database? Michael

  • Default Query Print Layout problem

    Hello:     I have a query below SELECT T0.[ItemCode], T0.[Dscription], sum(T0.[Quantity]) as 'Quantity' FROM INV1 T0 WHERE month(T0.[DocDate]) =month([%0]) AND  year(T0.[DocDate]) = year([%0]) and T0.[ItemCode] IS NOT NULL GROUP BY T0.[ItemCode], T0.

  • Trying to play iPhone library through iTunes on my work computer

    I have my iPhone synced with my home computer. I authorized my computer at work (HP laptop) in iTunes with my iPhone connected and recognized. When I click on the iPhone in iTunes, I can see all of the music, but it is grey and you can't click on any

  • Combine PDFs using Preview in Mountain Lion (other threads read)

    I have reviewed several threads about combining PDFs in Mountain Lion.  I will ultimately learn Automator but for now, I have a relatively simple question: 1) I open multiple PDFs in Preview, one window per PDF 2) I drag thumbnail pages from document

  • How to add new calculation module

    Hi all, I need to add to the system new calculation module (formula) for tax calculation (I need to implement tax rounding). I know that these calculation modules are implemented as FORMs, but I did not find a way, how to "register" my FORM as calcul