EBS instance migration across servers

Hi,
Background: Oracle database in TB's
Application: Oracle EBS 11i - release 11.5.10
Need your advice to migrate EBS instances over network in easier way ,cheaper cost and minimum downtime.Preferably avoiding third party backup solution
Thanks & Regards,
Apps DBA
Edited by: user10702579 on Nov 11, 2011 1:59 AM

Hi;
Please see:
Database Documentation Resources for EBS Release 11i and R12 [ID 1072409.1]
Also see:
How to Perform a Full Database Export Import during Upgrade, Migrate, Copy, or Move of a Database [ID 286775.1]
Different Upgrade Methods For Upgrading Your Database [419550.1]
10G - 11G with New Hardware
Migrating to Linux with Oracle Applications Release 11i [ID 238276.1]
Debugging Platform Migration Issues in Oracle Applications 11i [ID 567703.1]
9i Export/Import Process for Oracle Applications Release 11i [ID 230627.1]
10g Release 2 Export/Import Process for Oracle Applications Release 11i [ID 362205.1]
Oracle Applications Installation Update Notes, Release 11i (11.5.10.2) [ID 316806.1]
Regard
Helios

Similar Messages

  • EBS Instance migration to Exadata Servers

    Hi Experts,
    Kindly note that we are in process of doing the ebs instance migration from OEL 6.4 64-bit OS to Exadata Server. And the proposed target os on the exadata server is OEL6.4.
    a. need to convert the non asm ebs db to asm on the target.
    b. migrate the instance to Exadata.
    Please suggest me the approach and notes.
    Regards
    Mohammed.Abdul Muqeet

    Migrating an Oracle E-Business Suite Database to Oracle Exadata Database Machine (Doc ID 1133355.1)
    As you are having Source database on linux (64-bit) and wanted to have your target database on Exadata (also linux 64-bit) then either you can use RMAN,rconfig or dbca to migrate the database.
    A. Using RMAN you can duplicate the database from non-ASm to ASM on Exadata
    B. Using dbca, you can create the database template and then can create the database on exadata ASM
    C. Similarly rconfig can also be used.
    RMAN is widely used to migrate the database to Exadata when source database is also on Linux 64-bit.
    Regards
    Mohammed.A.Muqeet

  • Data Guard - Keeping same SID/Instance Name across both sites

    Hello,
    We are working on a project to move the databases from legacy to new servers. The migration plan is to use Data Guard option for our migration strategy. We would like to know followings.
    1) Is it possible to build stand by databases with same instance name of legacy primary instances? If so, how it could be?
    2) If not, we can build stand by database with different instance name (DB_UNIQUE_NAME). Do the switch over and cut off the replication with legacy primary database. Once done, What other alternative do we have to change the instance name same like legacy database instances?
    The ultimate goal is to retain same DB name and instance name in new server with minimum downtime.
    Database - 11.2.0.3.0
    Database Type - Oracle restart and RAC
    O.S. - RHEL 6.3
    The requirement is have same DB name and instance name across sites.
    Primary site - X node
    Primary DB - EODSS
    Primary DB instances - EODSS1, EODSS1
    Standby Site - Y node
    StandBy DB - EODS
    StandBy instances - EODSS1, EODSS1
    Thanks,
    Pankaj
    Edited by: user12025125 on Feb 22, 2013 12:33 PM

    Hello;
    1) Is it possible to build stand by databases with same instance name of legacy primary instances? If so, how it could be?
    Yes. Not sure I understand the second part of the question. I like to think of a standby database and a primary database as the same database in different modes. RMAN treats them as the same. They have the same DBID.
    2) If not, we can build stand by database with different instance name (DB_UNIQUE_NAME). Do the switch over and cut off the replication with legacy primary database. Once done, What other alternative do we have to change the instance name same like legacy database instances?
    It should not matter what the database name is. Almost everything connects using an Alias. I find it easier to use a slightly different name for the Standby because then I know which site I'm working on. What I did was put an S in front of the name on the standby side to keep them apart in my mind. A tnsnames entry can handle the rest. So yes you can do that, but it might be harder to keep track that way.
    ernie =
    (DESCRIPTION =
        (ADDRESS_LIST =
           (ADDRESS = (PROTOCOL = TCP)(HOST = primary.server)(PORT = 1521))
           (ADDRESS = (PROTOCOL = TCP)(HOST = standby.server)(PORT = 1521))
           (CONNECT_DATA =
           (SERVICE_NAME = ernie)
    )Best Regards
    mseberg

  • How to find the SQL Server Instances running across the given activer directory domain?

    How to find the SQL Server Instances running across the given activer directory domain?
    I have though of OSQL -L , Microsoft Assessment and Planning ( MAP ) tool and SQLPing3 (SQLSecurity) might help me.
    I would appreciate if there any other way of finding the SQL Servers / Instances running across the given active directory domain.
    Sivaprasad S
    http://sivasql.blogspot.com
    Please click the Mark as Answer button if a post solves your problem!

    Dear ,
    Very simple u find all instances through the customized sp which is get all details about inventory. Like i put the sp bellow. This is without any tool. 
    USE [master]
    GO
    /****** Object:  StoredProcedure [dbo].[DBStatus]    Script Date: 08-01-2015 19:46:11 By Damodar Patle Sr. DBA Mumbai India ******/
    SET ANSI_NULLS ON
    GO
    SET QUOTED_IDENTIFIER ON
    GO
    ALTER PROCEDURE [dbo].[DBStatus] 
    AS
    SELECT 
    SERVERPROPERTY('servername') AS ServerName,
    ConnectionProperty('local_net_address') AS 'local_net_address',
    ConnectionProperty('local_tcp_port') AS 'local_tcp_port',
    CONVERT(VARCHAR(25), @@VERSION) as  VERSIONSQL,
    SERVERPROPERTY('ErrorLogFileName') AS ErrorLogFilePath,
    database_id,
    CONVERT(VARCHAR(25), DB.name) AS DBName,
    CONVERT(VARCHAR(10), DATABASEPROPERTYEX(name, 'status')) AS [Status],
    CONVERT(VARCHAR(10), DATABASEPROPERTYEX(name, 'Recovery')) AS [Recovery_Model],
    create_date as DBCreate_Date, --physical_device_name,
     (SELECT COUNT(1) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS DataFiles,
     (SELECT SUM((size*8)/1024) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS [Data MB],
     (SELECT COUNT(1) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS LogFiles,
     (SELECT SUM((size*8)/1024) FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS [Log MB],
     (SELECT physical_name FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'rows') AS MDF_File_Location,
     (SELECT physical_name FROM sys.master_files WHERE DB_NAME(database_id) = DB.name AND type_desc = 'log') AS  LDF_File_Location,
       user_access_desc
       FROM sys.databases DB
       ORDER BY dbName, [Log MB] DESC, NAME

  • ALUI Instance migration

    Hi ,
    I need information for a ALUI production instance migration from one server to another server on windows platform. The DB and the app server both are in a single host.
    (a) What are the steps to migrate a production instance from an existing server to a new server? The IP and host name will be different for the target instance. (b)Can we use the database and search collection backup / restore to get things going ? what are the steps to be followed after installation of ALUI in the application server in this case ?
    Any information on the approach / best practices for this is appreciated very much.
    Thanks & Regards,
    Viks

    Hello Viks...
    I just completed this procedure recently to create a QA environment... we previously only had DEV and PROD in our stack. Here is a basic high-level overview of the procedure:
    ** Updated at 8:52 AM... Wrote from memory. Reviewed documentation and noticed that I missed some steps. **
    1. Install all products in the new enviornment on your new hardware as a clean install.
    2. Run the post-install checklist to ensure that all components are online and functional as expected.
    3. Once your clean environment has been validated, stop all portal services and restore your target environment databases over the new environment databases.
    4. Copy the Document Repository 'documents' folder from the source environment to the target environment
    4. Run target version of postinst.sql against the target portal database
    5. Start only portal and imageserver
    6. Remove source system Automation Servers. Truncate job and audit history tables in database.
    7. Reimport the migration packages for all products after database restore so the remote servers point to the proper locations for the new environment. Validate all remote server urls... some may need to be changed manuallly.
    8. Purge then the search index to remove test data then schedule a search repair for a previous date/time so it runs in repair mode when automation server is started.
    9. Make sure Intrinsic Ops folder has been registered in new environment Automation Server.
    10. Start all remaining services.
    11. Update and test publisher Publish and Preview targets then right-click Publisher Explorer and publish the entire tree.
    12. Run post-install checks again to validate.
    Hope that helps...
    Danya
    Edited by: Danya D. Smith on Apr 17, 2009 8:52 AM
    Edited by: Danya D. Smith on Apr 17, 2009 9:12 AM - Corrected some typos... I guess my fingers aren't awake yet. Reaching for coffee.

  • BPM Suite 11.1.1.5 Feature Pack - Instance Migration

    Hi,
    In BPM Suite 11.1.1.5 Feature Pack, Instance Migration was introduced. A very nice and essential feature. I'd like to investegate the behaviour of this feature. However I can't find any documentation about it. Also not in the new documentation.
    Any suggestions?
    Thank you in advance!
    Bye, Aldo

    There is a screenshot screenshot on this feature and that's about it.
    ....

  • Question about configuring REST web service in EBS instance

    I am from EBS SCM team. From one wiki page, it says OA Framework provides REST framework to expose OAF BC4J objects as web services. Can you provide more details about how to configure REST web service for one EBS instance? Any related information is also helpful.
    Edited by: 936859 on Sep 7, 2012 5:45 PM

    IIRC you must activate PAPI-WS for the engine. In Studio you do it by right-clicking on the project, then "engine preferences". In enterprise/standalone you must activate PAPI-WS in the Admin Center.

  • How to allocate the processor to oracle ebs instances

    dear all
    we are using solaris 10 on sparc t3 server.
    we want to allocate some processor to oracle ebs instances for the multi instance environment
    so please suggest us how should we go for it..
    regards

    In addition to the above, increasing the number of processors should not impact the functionality of the application and your only concern should be the licensing, and for this matter you will need to contact your Oracle sales representative.
    http://www.oracle.com/us/corporate/pricing/price-lists/index.html
    Global Pricing and Licensing
    Thanks,
    Hussein

  • EBS database migrate to exadata server.

    Hi Experts,
    My EBS database is 11.2.0.3. I'm going to migrate EBS database to exadata server. Please advise what patches need to be applied on exadata server for EBS database migration?
    Thanks & Regards,

    Hello Angela,
    I think what you're looking for is in My Oracle Support document ID 1392527.1 "Oracle E-Business Suite Release 11i & R12 Patches Required with Oracle Database 11g Release 2 (11.2.0) on Exadata".  It has a detailed list of patch requirements for different combinations of EBS and database versions.
    Cheers,
    Marc

  • BPM instance migration

    Hi,
    I have a question regarding bpm instance migration.
    Since PS4FP BPM support instance migration of running BPM instances. A very nice and usefull feature. When changing the BPM process, the change done has impact on the possibility to automatically migrate the instance. I encountered three options:
    The change to the underlying process is minor --> the process instances are migrated automatically
    The change to the underlying process is more complex --> the process instances need to be migrated manually
    The change to the underlying process issignificatnt --> the process instance cannot easily be migrated at all. Must be done manually
    As we have a lot of running process instances we want to avoid manual migration as much as possible. So when changing the process we want to try to make it a minor change. Is there documentation available describing what causes the instance to be migrated manually or not migratable at all?
    Bye, aldo

    Aldo,
    Any luck with the document for instance migration? I could find only one blog which I referred to - https://blogs.oracle.com/ateamsoab2b/entry/bpm_11g_deployment_instance_migration . I was facing some issues with the manual migration part - altering the request through process workspace.
    Can you please share any document you have on this topic.
    Thanks,
    Bhaskar.

  • Okay, just tell me now that Mavericks does not support iMovie 6 HD which I have migrated across my devices since it first came out as iMovie 4. If this is true, then I will just jump off the nearest bridge, as I use it as a business.

    Okay, just tell me now that Mavericks does not support iMovie 6 HD which I have migrated across my devices since it first came out as iMovie 4 and have supplemented with third party add ons from 3Gee. If this is true, then I will just jump off the nearest bridge, as I use it for my videography business. Since upgrading to Mav, I can not get the program to launch and am getting no pop up to tell me what is going on. It let me open and start a project at first, but then I was half way through and it crashed and I lost everything and now will not launch at all. Does anyone out there still use this magnificent program? Please help—the wedding I just commissioned is on hold and I am not want looking forward to facing a bridezilla.

    right now just to get yer work done, get ahold of any OS that will run iM6HD and get it done. then dump MAVRICKS (wait till 10.9.2 at least) and retro back to OSX 10.6..or 10.7 (if you have it). I use FCExpress4 on 10.6....you might want to consider keeping a dedicated mini or something that ONLY runs your editing sw. I have 2 older machines that I will never upgrade because the editing SW wont run on the newwer OSs.
    abuve all, be honest with your client. we all got kind of blindsided by this initial relese (like a bug infested matress).
    ask if they have any apple stuff that has Mavricks probs. bridzillas only happen when they are out of the loop. Keep them informed. but ...also be ready to duck.
    hope this helps.

  • Query to get all ports assigned and used by EBS instance.

    Hi,
    Can some one pleaase help to get
    Query to get all ports assigned and used by EBS instance.
    Help is appreaciated.
    Regards,
    Milan

    MILAN RATHOD wrote:
    Hi,
    Can some one pleaase help to get
    Query to get all ports assigned and used by EBS instance.
    Help is appreaciated.
    Regards,
    MilanIn addition to the thread referenced above by Helios, please check the context files and (Oracle E-Business Suite R12 Configuration in a DMZ [ID 380490.1] -- F. List of Ports to Open in a DMZ Configuration).
    Thanks,
    Hussein

  • Instance Migration

    One of the features mentioned in the Feature Pack is a thing called "Instance Migration".
    http://www.oracle.com/technetwork/middleware/bpm/learnmore/488809
    From what I have read it allows one to make a change to the BPM Project/process in BPM Composer and redeploy it without invalidating existing running processes. My question is how is the feature realized? From my experiments all of my existing tasks within a BPM Process become stale and I don't see the feature "Instance Migration" anywhere in BPM Workspace.
    Any ideas on this topic?

    bump - I'd really appreciate it if anyone can help. Thanks

  • Ebs instance- refresh database only?

    Good morning,
    I would like to know, is it possible to do a database refresh only without touching anything to apps binaires in an ebs instance?
    Something like, shutdown application, shutdown database. Delete database (datafile, not dbms binaires), bring back backup, recreate control file, recover the database, run the updates to change the prod path for test path for ebs, normal update in the post-clone steps.
    Thx~

    Thank you very much hussein for replying.
    One more clarification
    Say i have applied patches on application node and i did not copy the apps file system and cloned only database retaining the target apps file system. In what ways it will effect ,will it fail while running autoconfig on apps tier.
    what my assumption is "we will miss out the bug fixes on target node if we do not copy the apps file system from source" apart from this there will be no problem.
    2.During patching of source applications ,if the patch would have touched my database ,say creating new sequence,updating any profiles,etc... ,In this case ,will cloning only db part be successful ,keeping the target apps filesystem intact or will it fail.
    My assumption is it will fail ,since the application file system might know the the changes that have been made to database.[since it is old application file system on target]
    Did you ever use rsync ? can we use rsync during cloning. to just sync the application file system and only refreshing db part.
    Regards,
    Mannu

  • Demantra Integration with R12 EBS instance without APS /ASCP

    Will the out of the box integration work without the APS in the R12 EBS instance.
    The client runs SCP and does not use APS for this.
    The client wants to implement Demantra - so how will the integrations work because there is no APS available ?
    Any thoughts would be helpful.
    thx and rgds,
    Pankaj

    Demantra does not integrate with SCP. But You can code such that Demantra output can go into a forecast and then load the forecast into SCP.

Maybe you are looking for

  • Spry collapsible panel - panel (link) border issue

    Hi folks. I'm new to spry and I'm inserting a spry collapsible panel into a web page in Dreamweaver CS4. It all works fine but i have this very ugly border around the panel tab (the link that you click to open the panel). In frefox its a dotted line

  • PDF file not useful in iPad or in different PCs

    I just made a web form. It works fine in the test. I made a PDF that should allow direct ordering just by filling in which products to order and which amount.  The PDF works fine in my PC and I received the orders just fine. However, when I try to op

  • GTK file dialog causes crash

    Hello community, I am experiencing a weird problem since I upgraded this afternoon. The upgrade itself went smooth and didnt break any package. I checked the latest mirrors an found out my system is perfectly up to date. Unfortunately, the GTK file d

  • Safari won't work (bookmarks select but won't unselect)

    My problem is that when I click on any bookmark in Safari, such as those in my Bookmarks Bar, the page stays blank/white, and the bookmark stays with a permanent grey oval around it, as thought it was selected, but won't unselect when you let go of t

  • Can I install a Rogers firmware into a unlocked Mobilicity BlackBerry?

    Can I install a Rogers firmware into a unlocked Mobilicity BlackBerry? I am using the phone with my Rogers simcard. Solved! Go to Solution.