Migration on existing EJB System from a server to other.

How can i migrate my existing "EJB system" from a server to an other server without lose data ?
Data were modeled using CMP model.
(The servers are the same but not on the same machine)

right !
The data stored in the database from my CMP ...
(or the persistence layer)

Similar Messages

  • Business Rules Migration from one server to other server

    Hi All,
    Can some body help on business rules migration from one server to other server? and also wt is the difference there in Export and import BR's and Administration repository to migrate.........i fail to understand if we export and import br's and need to change in xml target server and after import whether all users can able to see this imported BR's ?
    then wt is the use of Administration option under Business Rules-->right click-->repository...connect--->need to connect oracle info....wt is this process? can some body help on this please........
    thanks,
    huser

    Hi,
    The methods are pretty much the same in what they do.
    When you export rules it creates an xml file based on the selection you have picked, you can just log into EAS and do this you don't have knowledge about the repository, it is also useful for migrating across versions. You also have the option of changing the xml file before importing it into your target.
    When you migrate the respository you have to physically connect to the database repository and have knowledge of the connection details, it is probably aimed directly at a system admin.
    The options in both methods are pretty much the same, you can choose what you want to export or migrate.
    You hit issues when you export/migrate for instance the location names change and need to be updated, you can update the xml file to change the locations though if you choose the migrate option you won't have that ability.
    The next issue is the user/group accounts which is the biggest flaw, if the users/groups exist on the target and have the exact same SID then they will migrate otherwise they will usually get dropped.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Can we migrate SAP 40B release system from windows NT to windows 2003.

    Hi,
    We want to know can we migrate SAP 40B release system from windows NT to windows 2003 server; if yes, please share with us the OS migration document.
    Regards,
    R Mav

    > Our SAP 4 O B is on windows NT and oracle version is 8.0.5 and wants to do OS migration from NT to win. 2003.
    Neither Oracle 8.0 nor 8i were releases on Windows 2003, they won't work and are not released.
    So I'm afraid the only way you can go is Windows 2000.
    Markus

  • Standard report which importe personnel number from  one server to other

    Dear Hcm Gurus.
    Is any standard report exist in SAP Which imports Personnel number from one server to other server which are maintained in Source server ,imported all contents maintained in source server.
    e.g  An employee is hired in  u201C Server Au201D and personnel number  is generated internally while we want to imports same employee data with same personnel number in Server u201CBu201D
    IS it possible ? if is kindly do help and clarify any standard report which import complete data from one server   to other server with all its infotypes.
    barket

    Hi,
    a standard way should be setting up an ALE scenario between the two systems to transfer employee data and keep them updated. This needs a bit more set up than a single report to be run but it is a common way to create HR landscapes where different local HR systems consolidate data to a centralized system.
    The other options are valid, too. But I know them more for transfering data for test or validation reasons.
    If you could add some more information to the business background of your requirement we could add give a better suggestion which solution to head for.
    Kind Regards
    Roman

  • Hi,how can i transport objects from one server to other like (Dev To Qty)

    Hi Sir/madam,
       Can u explain how can i transport objects from one server to other like (Development To Quality To Production).
    Regards,
    Vishali.

    Hi Vishali,
    Step 1: Collect all Transports(with Packages) in Transports Tab(RSA1)- CTO
    Step 2: Release the subrequests first and then the main request by pressing Truck button
    Step 3: STMS or Customized transactions
    Object Collection In Transports:
    The respective Transports should have the following objects:
    1. Base Objects -
    a. Info Area
    b. Info object catalogs
    c. Info Objects
    2. Info Providers u2013
    a. Info Cubes
    b. Multi Providers
    c. Info Sets
    d. Data Store Objects
    e. Info Cube Aggregates
    3. Transfer Rules u2013
    a. Application Components
    b. Communication Structure
    c. Data Source replica
    d. Info Packages
    e. Transfer Rules
    f. Transformations
    g. Info Source Transaction data
    h. Transfer Structure
    i. Data sources (Active version)
    j. Routines & BW Formulas used in the Transfer routines
    k. Extract Structures
    l. (Note) If the transfer structures and related objects are being transferred without preceding
    Base Objects transport (e.g. while fixing an error) it is safer to transport the related Info
    Objects as well.
    4. Update Rules u2013
    a. Update rules
    b. Routines and formulas used in Update rules
    c. DTPs
    5. Process Chains u2013
    a. Process Chains
    b. Process Chain Starter
    c. Process Variants
    d. Event u2013 Administration Chains
    6. Report Objects u2013
    a. Reports
    b. Report Objects
    c. Web Templates
    Regards,
    Suman

  • Migration issue in SQL Developer (from SQL Server to Oracle)

    Dear All,
    I am using SQL Developer 3.0 to migrate data from SQL Server 2008 to Oracle 11gR2. I used Quick Migration Wizard for migrating and everything was Ok but when it was running migration process, I got this message: “Migration actions have failed. Check the migration reports for details. : null”
    But there was not any report to check. Does anyone know how I can do it without any problem?
    Thanks in advance.

    I am working on a project to migrate from SQL Server 2008 to Oracle 11gR2. It includes some tables, views, indexes, triggers and store procedures. At first I worked on SQL Developer 2.1.1.64 but it doesn’t support SQL Server 2008 (I had to use SQL Server 2005 in its offline options). I got a lot of error when I used the offline options. I know that I may be having some problem in table or view definition in my SQL Server but if I don’t have any log file I can’t solve them.
    Unfortunately, in SQL Developer 3.0 there isn’t any option to generate a SQL comments from objects (convert to Oracle) because I need to rewrite comments if they have problem. For example I have a filed named USER that it’s a reserved word in Oracle so I have to change this field name.
    I also can’t use “Translation Scratch Editor” because it has some error to convert. For example when I use it for the following code:
    CREATE TABLE [dbo].[Table1](
         [ID1] [int] IDENTITY(1,1) NOT NULL,
         [Name1] [varchar](50) NULL,
         CONSTRAINT [PK_Table1] PRIMARY KEY CLUSTERED
         [ID1] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    CREATE TABLE [dbo].[Table2](
         [ID2] [int] IDENTITY(1,1) NOT NULL,
    [Name1] [varchar](50) NULL,
         CONSTRAINT [PK_Table2] PRIMARY KEY CLUSTERED
         [ID2] ASC
    )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
    ) ON [PRIMARY]
    I receive a wrong code like this:
    CREATE SEQUENCE Table1_ID1
    START WITH 1
    INCREMENT BY 1;
    CREATE TABLE Table1
    ID1 NUMBER(10,0) NOT NULL,
    Name1 VARCHAR2(50) ,
    CONSTRAINT PK_Table1 PRIMARY KEY( ID1 )
    CREATE OR REPLACE TRIGGER Table1_ID1_TRG
    BEFORE INSERT
    ON Table1
    FOR EACH ROW
    BEGIN
    SELECT Table1_ID1.NEXTVAL INTO :NEW.ID1
    FROM DUAL;
    END;
    CREATE SEQUENCE Table1_ID1
    START WITH 1
    INCREMENT BY 1;
    CREATE SEQUENCE Table2_ID2
    START WITH 1
    INCREMENT BY 1;
    CREATE TABLE Table2
    ID2 NUMBER(10,0) NOT NULL,
    Name1 VARCHAR2(50) ,
    CONSTRAINT PK_Table2 PRIMARY KEY( ID2 )
    CREATE OR REPLACE TRIGGER Table1_ID1_TRG
    BEFORE INSERT
    ON Table1
    FOR EACH ROW
    BEGIN
    SELECT Table1_ID1.NEXTVAL INTO :NEW.ID1
    FROM DUAL;
    ENDCREATE OR REPLACE TRIGGER Table2_ID2_TRG
    BEFORE INSERT
    ON Table2
    FOR EACH ROW
    BEGIN
    SELECT Table2_ID2.NEXTVAL INTO :NEW.ID2
    FROM DUAL;
    END;

  • [Help] Move ECC system from one server to another - Considerations

    Hi Guys
    We currently have two SAP ECC 5.0 Instances over DB2 9.7/AIX 6.1 on a same server (WS01), and now we are splitting this, by leaving Development box on WS01 and moving QA to WS08
    What would you think/recommend the best approach to fulfill this requirement
    Im taking in mind such things like, transport system, RFC connections, Database and SAP Profiles
    What steps would you think are mandatory to have QA system fully working on a brand new server
    Is an option to install an system from scratch on that new server (WS08), and they restore the actual database and perform the post processing steps just like a refresh, and then adding that system to the actual ECC landscape
    Best Regards
    Martin

    > We currently have two SAP ECC 5.0 Instances over DB2 9.7/AIX 6.1 on a same server (WS01), and now we are splitting this, by leaving Development box on WS01 and moving QA to WS08
    >
    > What would you think/recommend the best approach to fulfill this requirement
    >
    > Im taking in mind such things like, transport system, RFC connections, Database and SAP Profiles
    >
    > What steps would you think are mandatory to have QA system fully working on a brand new server
    This process is called "system copy".
    > Is an option to install an system from scratch on that new server (WS08), and they restore the actual database and perform the post processing steps just like a refresh, and then adding that system to the actual ECC landscape
    It's an option but not necessary to first install a full featured system and then "overwrite" the database.
    You can install a new system using the database backup of the original system.
    http://service.sap.com/instguides
    Markus

  • Unable to connect to SMC Client system from SMC Server System

    hi,
    i have installed SMC 3.6.1. on Solaris 10 OS . The SMC agents are installed are all system but SMC Server is unable to communicate with Client systems. SMC Server System can Ping and Telnet all the SMC Client systems , but unable to connect from SMC .
    Please guide how can resolve this problem
    best regards,
    Adeel Mehmood

    Hi Adeel,
    i have installed SMC 3.6.1. on Solaris 10 OS . The
    SMC agents are installed are all system but SMC
    Server is unable to communicate with Client systems.
    SMC Server System can Ping and Telnet all the SMC
    Client systems , but unable to connect from SMC .
    Please guide how can resolve this problemSo, you can login to SunMC, but you're unable to make an icon for any of your Agents? Or you have icons you made bofre but when you click on them now you get errors?
    If these are new Agents, do they have more than one netowrk interface? If so, they may have security information for the "other" network (the one the SunMC Server's not on). You can try manully specifying the correct network for one Agent and see if it helps:
    http://forums.halcyoninc.com/showthread.php?t=2
    Regards,
    [email protected]
    http://www.HalcyonInc.com
    !! New !! : http://forums.HalcyonInc.com

  • How to migrate html file (workspace homepage) from one server to another

    Hi,
    Does any one know how to move a html file that is attached as homepage for Workspace from one server to another server?
    When I try using Export option, I dont see this file to select.
    Thanks in advance,
    PM

    You can use LCM functionality.
    Thx

  • How to Import/Export database tables from one server to other in oracle8i

    Hello friend,
    Please can any one tell me how to import/export groups of database tables from one server with oracle to another using VB.net. It would be nice if some one can provide some code of it.
    I am a software developer and I am in middle of a large project development, in which I need to export a large oracle database from one server to another efficiently.
    Its very urgent so please someone help me.

    At command prompt (source db)
    set ORACLE_SID=db_name
    exp system/password@db_name full=y buffer=104857600 file=(c:\file1.dmp, c:\file2.dmp....) log=c:\exp.log filesize=2000M
    Then ftp the export dump files (in binary) to the other server or copy to target server over the network.
    At command prompt (target db)
    set ORACLE_SID=db_name
    imp system/password@db_name full=y ignore=y buffer=104857600 file=(c:\file1.dmp, c:\file2.dmp....) log=c:\imp.log filesize=2000M
    If the path names of the datafiles are going to be different in the target server (as compared to the source), then precreate the tablespaces before import. Set buffer value accordingly.
    Message was edited by:
    FeNiCrC_Neil

  • Testing while transporting from one server to other

    We need to complete testing of BW objects in one server which has copied from another server for the support pack upgrade. 
    Here are the basics we need tested:
    Spot check InfoSources/ODS Objects/Cubes/Update rules to ensure that all are active and the structures have not changed.
    Testing of  process chains.  Check to ensure any data loads that fail can be resolved.
    How should I carry on these testing ?
    I think if the objects are active in new server then they are fine and in that case no need to test the structures of the objects.
    Please help me whether I am right or wrong .
    Are there any other way of testing as the time line is short ?
    Please help me asap.

    Hi Rajib,
    You would basically test everything.
    1. RSRV check for all the objects.
    2. Check for some queries with different scenarios like RRI, etc.
    3. Dataload for your major Data targets.
    4. You can also do a version check for all the info-objects in RSD1.
    5. Likewise check the versions for all the BW objects like cube, ODS in RSD1.
    Bye
    Dinesh

  • Migration SAP-System from 32bit-server to 64bit- server

    We want to change our SAP SOLMAN EHP1-system , which running
    on LINUX SLES9 32bit ( with MAXDB 7.7 ) to a new target server with LINUX SLES10 64bit ( as well MAXDB 7.7 ).
    We have also the same OS Linux but differents releases.
    My question: Can I perform this change with the tool "homogene
    Systemcopy" or is there any other solution for this problem ??

    A Solution Manager is a combined ABAP + Java system. You can do a database copy approach but you must use sapinst to migrate the Java part (it's all included in sapinst).
    Keep in mind that your JDK changes, for 32bit Linux you must use the Sun JDK, for x86_64 you must use the IBM JDK. The migration may fail on initial attempt since the parameter for the Sun JDK are different to those for the IBM JDK. You'd then have to adapt the parameters using configtool before you can continue.
    Apart from that it should be smooth.
    Markus

  • Migrating Functions that return TABLE from SQL Server to Oracle

    I have some functions in SQL Server that return a TABLE datatype. When these functions are moved to Oracle 9i using Migration Workbench, they give compilation errors. In the migrated function it says that the DDL stmt is passed to the ddl file, but the table is not created. I checked the ddl stmt for temporary tables and it is wrong. Its a create table stmt with no size for varchars and we can't even edit these stmts in the workbench.
    Also the migrated function has the table name for return type, which doesn't works in Oracle. Oracle needs a datatype to be returned from Oracle.
    How do we return a table from a function?

    Yes.
    If you do not enclose the object names (table/view/index etc) in double-quotes, they are stored in uppercase format in the data dictionary.
    If you enclose them in quotes, they are stored in the same case ans you entered. As such, while accessing such objects, you need to tell Oracle not to convert the names to uppercase, hence the requirement to supply the names in quotes.

  • How to connect Systems from different server

    Dear All,
    i am trying to do establish the following connection.
    We have a Data services installed on server A and the SAP system is installed on server B. To get connected to both we are using VPN connection. (We are using different link to get connectedto VPNand can not get logged in both simultaneously)
    I am trying now to connect the data services to the sap system but it do not work.
    How to get the connection establish?
    Thank you.
    Pat

    Hi Pat,
    What kind of connection are you trying to establish? Does that other system has to push/fetch data from SAP? What protocol is being used for that?
    Kind regards,
    Mark

  • Migration of jd edward appl from SQL Server to ORacle

    IHAC who is running JD Edwards on SQL Server (about 50GB) and want to convert to Oracle 9i/10g Release.
    Did anyone done this migration on JDEdwards application and would like to hear the complexities involved in the SQL/Stored Proc/Trigger Conversions
    --

    Hi <please provide your name>,
    You should NOT migrate a JD Edwards database with the SQL Dev Migration Workbench, as for all Oracle Apps there is a standard migration procedure. JD Edwards have one like this, but I don't know exactly how you should reach it. Maybe on JD Edwards forum.
    Good luck,
    Andrei

Maybe you are looking for

  • Video Lags Behind Audio in Preview Pane, Timeline and Rendered Video

    Hello, I'm having an issue with a six minute video that I grabbed from the media browser in Premeire and am attempting to use in my timline.  The first few mins of the 6 minute video is fine, but as the video progresses in the preview pane the video

  • I'd like to know how can i get my letters  is bigger on my computer ?

    Any body here ?

  • Adobe Presenter 8 Quiz issues

    We're having issues with the way quizzes are acting in SCORM packages created with Presenter 8. Users are having the quiz freeze and unable to answer, some questions are already marked wrong when they start the quiz, and some questions (particularly

  • Problem in bacground scheduling of ABAP program

    hi, i am writing code for bw.Following is the code.same following program i am trying to execute through bacground process,but it is not ececuting,it is nt generating any files in background.can any body help on this topic,its urgent. *& Report  ZPFA

  • ! - in front of some songs in my library

    Hoping someone can help. I had about 600 songs on my iTunes and iPod. I just spent about 4 hours downloading about another 200 songs, then I updated my iPod. Now there are exclamations points in front of some songs and it seems to be whole albums. I