Migration from J Dev9.034 to Jdev 10g

What are the series of steps involed in converting a BC4J-STRUTS-JSP application developed in Jdev 9.034 to Jdev 10g.
All our Actions extend Struts action and Form Bean Extend ActionForm. Will this be an issue when we need to migrate to Jdev 10g.
Please share the experiences.

But what we are looking for is a migration guide from 9.034 to 10g. This is where the new ADF concept has been added.
Do we need to change all the actions if we migrate to 10g or not??
Jdev team and help on this...

Similar Messages

  • Pb for rerouting mail in a migration from Exchange 5.5 to OCS 10g R2

    Hi,
    I try to migrate from Exchange 5.5 to OCS 10g R2.
    I meet a pb when I want to migrate an account, rerouting is active.
    The routing alias is created in Exchange (user_es902migration@ocshostname) as well the delegation rule.
    BUT no rewriting rule is created is the OCS server, so the mail I send to this user on Exchange are well received on Exchange but are rejected on OCS.
    Any help is welcome .

    Try to use the "project from WAR file" or "project from existing source" option in JDeveloper and point to either a WAR file produced from Netbeans or the actual source code.
    You then might need to set up libraries and project content as well as web content under the project properties in JDeveloper.
    This how-to shows how we did it with another tool but the general directions should be similar:
    http://www.oracle.com/technology/products/jdev/howtos/1013/w4wljdev/workshopandjdev.html

  • Migration from SQL SERVER 2008 to Oracle 10g issues.

    Hi ,
    I'm trying to migrate from SQL Server 2008 to Oracle 10g and I end up with some issues that I wanted to ask some info about it.
    First, I was following a tutorial
    http://st-curriculum.oracle.com/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm
    and and in the last version of Oracle SQL developer I downloaded, I didn't find the Load Database Capture Script Output option.
    My first question is how can I either add this option or is there a new way to load the capture script ?
    Then I use the migration wizard and after following everything, I had the migration complete message from the application.
    When I tried to open my connectionss, it tells me version 11.2 is required. Does that mean that Oracle SQL developper 3 only
    do the migration for oracle 11g? And if I tried the previous versions, it doesn't support SQL server 2008.
    What do I do in this case ?
    Thanks !

    Thank you for your reply.
    After using the wizard and made the offline migration script, in the Migration projects window I made a move data to the oracle connection I previously made and after when I tried to reopen the connection, I couldn't.
    Well I didn't retry it yet to see if I'll have the same behavior but basically this is what I think I did. When I tried to open the connection I made, it says, Oracle 11.2 is required.
    Now, I just generate target from the convert model and it says migration complete but how do I test it and I do I go to oracle and see change ?
    Do I had to create a special user in SQL Server to log to it first ? How do I logon to it ?
    Edited by: 873671 on Jul 20, 2011 7:03 AM
    Edited by: 873671 on Jul 20, 2011 7:19 AM

  • Migration from Informix 9.4 to Oracle 10g

    We have to perform a migration from Informix 9.4 to Oracle 10g. Many tables, many data and many stored procs.
    We use the Online mode and the imports finish with any errors, but it has not recovered any stored procedures or we can't view the Informix Stored Procedures in the Source Model in the workbench.
    In the importation log appears as no found procedures, but under owner informix are all procedures.
    What we can do?

    In the 10.1.0.4 version of the workbench we create an informix user who will have all the stored procedures.
    If you want these migrated as another user you can right click on the user in the oracle model and rename it for a start.
    If this is a large migration, I would recommend the following.
    1. generate the ddl for the oracle database.
    2. for the users, that will be created, move the objects to the users that you want these in.
    3. Make sure that the privileges that a particular user has is appropriate to use the data and execute the stored procedures if necessary.
    This tool is not just a one shot deal.. It will bring the informix db over to Oracle, but you need to verify the structure and the logic of the stored procedures as being correct.
    Barry

  • Migration from discoverer 3.1 to BI 10g

    Hi all,
    We have embarked on a recent project where the version of discoverer is being migrated from Disc 3.1 to Disc 10g. The one issue that is really bringing the implementation down is that all page settings and printouts need to be reset for every single workbook.
    Is there any way Discoverer can retain the print setting, instead of the user having to manually go to each report and preview, reset paper size, margins and then print the workbook?
    Please let me know if anyone has any ideas on how to overcome this issue.
    thanks
    Saliha Mohammed

    Hi all
    If you were upgrading from Discoverer 4 to Discoverer 10 you would have a chance of retaining at least some of these settings. Unfortunately, Discoverer has no direct upgrade from version 3 for workbooks so I fear you will have to recreate your settings.
    When you export / import from 3 you gets the business areas, LOVs and all user access converted however this does not copy any workbooks that may have been saved to the database. This I'm afraid is going to be a manual job for the users to save any workbooks they want to a My Computer and then load and save them to the database inside version 4. You might find that settings are retained if you use Desktop for the transfer of workbooks between 3 and 4.
    Going from 4 to 10 you may well have to repeat the process. There are still some anomalies that creep in after the upgrade to 10. One that I know about is the default value for NULL. In older versions Discoverer used to blank the cell but in 10g the default is NULL. I'm afraid no workaround for this is known and if you have any workbooks that make use of spaces for NULL you will have to edit these after the upgrade to remove NULL and replace with spaces.
    Best wishes
    Michael

  • Migration from SQL Server 2005 to Oracle 10g

    Dear buddies,
    I need to migrate my tables with data from SQL Server 2005 to Oracle 10g. How can I do it in the best possible way?
    Please guide me.
    Nith

    Nith,
    I doubt if there is one best practice that can cover all cases of migrating data from sql server to Oracle. l generally find various factors case-by-case that make me chose one approach over the other. Without considering the business case and environment specific factors, some of the things I would like to know would be: The data types of the tables columns, table sizes, number of tables and if this is a one time process or a recurring process.
    One of the easiest (some times rather pesky) process would be:
    -Dump source data (Sql Server data) into flat files, csv or any preferred format
    -Setup a set of staging set of tables in the destination DB (Oracle in your case). You can setup the stage tables to enforce data-types, value sets and even some level of integrity constraints or any data logic or what ever you would like to filter out. Load the flat file data into a set of Oracle stage tables (Sql*Loader would be a good candidate)
    -You can always move data from these stage tables to you application tables
    You can script this whole process to run as batch or on demand or how ever you would like.
    I am sure you can google and find a bunch of proprietary as well as open source tools to do the same with little to a lot of work.
    good luck!

  • Migration from MS SQL Server to Oracle 10g

    Hi,
    In our application, we are planning to refresh data every one hour from MS SQL Server to Oracle 10g. Can anyone tell me what approach can be followed?
    Thanks & Regards,
    Faizal MK

    Hello,
    migrations can be done with the Migration Workbench that is included in the SQL Developer: http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html
    But your question sounds more like a replication of data than a migration. Please read as a starter the following note in My Oracle Support (former Metalink):
    Note 283700.1: How to replicate Data between Oracle and a Foreign Datasource
    That note describes ways for the replication in both directions. Please let me know whether this is helpful for you.
    Best regards
    Wolfgang Kobarg-Sachsse

  • Migrating from Weblogic to Oracle Application Server 10g

    Hello,
    To respond to this post you will need some basic familiarity with Weblogic.
    I am currently using Weblogic Server 8.1.
    I have an admin machine which is on its own physical hardware, and multiple managed servers. The admin server is a single point of management for all of the managed servers. Each managed server lies on it's own physical hardware and are managed remotely from the admin server.
    Does Oracle Application Server have this type of architecture?
    Lets say I have salesApp.ear and I want to deploy it across multiple physical machines, where would I administer the various physical machines from, and how would I create an instance on each machine?
    Would it be an oc4j instance or an AS instance? What is the difference?

    Forget about this!
    You need a JEE5 server to work with 11g.
    In theory you can develop application for OAS 10.1.3.1 but you must be very very careful which components you use. One new component and you are not able to run it on OAS 10.1.3.1
    If you have to run your apps on OAS 10.1.3.1 stay with JDEV 10g.
    Timo

  • Customers who have migrated from 9i EE with Spatial to 10g EE with Spatial?

    Hi,
    My customer is planning to migrated from their 9i EE with Spatial to 10g EE with Spatial. They would like to have an informal discussion with another Oracle customer about best practices, tips, user experiences etc so they can plan for their migration. Oracle Advanced Support will be involved, but they would also like to chat with a customer who has conducted an Oracle EE with Spatial 9ir2 to 10gr2 migration, preferably on a Sun Solaris 9.0 platform. approx 50 gig db.
    Can anybody recommend a customer that we could talk to?
    Thanks,
    Steve.

    Dave.
    There were many discussions on this topic.
    Try use "Search Forum" link and I belive that you find answer what you are looking for.

  • Migrating from SQL Server 2000 to Oracle 10g

    Hello,
    I am a newbie to Oracle 10g and haven't really worked with Oracle since 8i. I have been tasked to migrate all of our databases and tables to Oracle 10g. I need a little help getting started or pointed in the right direction on how to copy all that data from SQL Server to Oracle 10g. I know that Oracle has an Import/Export Utility, but don't know if it can do what I need. Can some one help point me in the direction I need?
    Thanks, Marion

    Ayub
    You need to download both the Oracle Migration Workbench core tool and the SQL Server 2000 plugin (SQLserver2k.jar). You copy the plugin into the plugin directory, after you unzip the Oracle Migration workbench main.
    The tool comes with release notes and a user guide, that explains the necessary setup and migration process.
    Donal

  • Project Migration from NetBean 5.0 to JDeveloper 10g

    Hi Everyone,
    I've small issue which require assistance from experts and gurus in this forum and I hope that you are able to provide me with some clues.
    Our development team is currently made up of most NetBean 5.0 and 6.0 developers and because we are continue to use more and more Oracle products, like Designer, Form, Database, Oracle Internet Directory, BPEL and others. It became apparent that we should start investigating whether JDeveloper should be our choice of IDE instead of sticking with NetBean.
    I've read a lot of resources about comparison between NetBean and JDeveloper. But to my surprise, I cannot find any useful information about the steps and procedures in migrating a NetBean project and open it in JDeveloper so the audience can see the steps and transitions involved and clearly see how easily or difficult to perform such migration tasks? Any feedback is welcomed as I believe someone would have asked similar questions which I'm enquiring and certainly, it will encourage more NetBean users to switch to JDeveloper if their requirements equate and lie in similar perspective with our organizations. Thank you for reading this email and have a nice day.
    Kind Regards,
    John

    Try to use the "project from WAR file" or "project from existing source" option in JDeveloper and point to either a WAR file produced from Netbeans or the actual source code.
    You then might need to set up libraries and project content as well as web content under the project properties in JDeveloper.
    This how-to shows how we did it with another tool but the general directions should be similar:
    http://www.oracle.com/technology/products/jdev/howtos/1013/w4wljdev/workshopandjdev.html

  • Migration from 8.1.7/ windows2000  to 10g/linux

    what is the step by step procedure to take export
    from 8.1.7 / windows 2000 and
    import into 10g / centos( linux).
    option 1: First upgrade from 8.1.7 / windows 2000 server to 10g / windows 2000 server and then
    10g / windows 2000 server to 10g/ linux.
    option 2 direct upgrade from 8.1.7 / windows 2000 to 10g/ linux.
    can you suggest which one is the best option.
    c.santhanakrishnan.
    Edited by: user608512 on Apr 11, 2009 12:39 PM

    Assuming 8.1.7 means 8.1.7.4, the following is what I normally do in similar situations :
    - create database in 10g with the same tablespaces as in 8i
    - full export from 8i
    - full import into 10g
    If you use ftp to move the export file, don't forget to set the binary mode.

  • Migration from Infotmix 11.5 to Oracle 10g using OMWK

    Hi,
    when i try to migrat Informix 11.5 to Oracle 10g with OMWK i got an error
    ** Oracle Migration Workbench
    ** Production
    ** ( Build 20050629 )
    ** OMWB_HOME: C:\Temp\eBook\Oracle\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_04
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows NT (unknown)
    ** o.s. version: 6.0
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Fri Dec 03 10:20:28 GMT 2010
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Informix Dynamic Server 9.x Plugin, Production Release 10.1.0.4.0
    ** Active Plugin : Informix9
    : Informix Dynamic Server 9.52.TC7CE
    : IBM Informix JDBC Driver for IBM Informix Dynamic Server 2.21.JC5
    java.sql.SQLException: [POL-2401] the number value is not in the valid range
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniExecute(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.execute(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeInt(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeUpdate(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:621)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    java.sql.SQLException: [POL-2401] the number value is not in the valid range
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniExecute(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.execute(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeInt(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeUpdate(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:621)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    java.sql.SQLException: [POL-2401] the number value is not in the valid range
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniExecute(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.execute(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeInt(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeUpdate(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:621)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    java.sql.SQLException: [POL-5205] column not found
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniPrepare(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.prepare(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.<init>(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.<init>(Unknown Source)
         at oracle.lite.poljdbc.OraclePreparedStatement.<init>(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCConnection.prepareStatement(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:464)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    EXCEPTION : LoadTableData.run() : IDS9_SYSUSERS [POL-5205] column not found
    _releaseConnection did not find connection to release!
    java.lang.Exception
         at oracle.mtg.informix7.server.Informix7ConnectionCache.releaseConnection(Informix7ConnectionCache.java:168)
         at oracle.mtg.informix7.server.Informix7ServiceImpl.releaseSourceConnection(Informix7ServiceImpl.java:310)
         at oracle.mtg.informix7.server.Informix7SourceModelLoad.loadSourceModel(Informix7SourceModelLoad.java:312)
         at oracle.mtg.informix7.ui.Informix7CaptureWizard.doCapture(Informix7CaptureWizard.java:751)
         at oracle.mtg.informix7.ui.Informix7CaptureWizard._runDialog(Informix7CaptureWizard.java:561)
         at oracle.mtg.informix7.ui.Informix7CaptureWizard.capture(Informix7CaptureWizard.java:490)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:208)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:85)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    ** Shutdown : Fri Dec 03 10:40:09 GMT 2010
    mayby because i'm using plug-in for Informix 9 (i cannot find plug-in for Informix 11.5!)
    could you hlep me?
    Thanks
    Maysar

    Hi,
    The 10.1 OMWB does not support the migration of Informix 11.5 and there is no plugin for that version.
    At the moment SQL*Develeoper migration workbench doesn't support Informix migrations either.
    If you have access to My Oracle Support have a look at this note -
    How To Migrate Non-Oracle Databases For Which A Migration Workbench Option Is Not Available (Doc ID 393760.1)
    Regards,
    Mike

  • Are there Major Impacts Migrating from Sybase 12.x to Oracle 10g, 9i, or 8i

    If anyone knows any websites on this subject or can help; I'd greatly appreciate it. Thanks

    Rudy,
    were there any errors reported on screen when you ran the SYBASE12_DSML_SCRIPT.BAT file ? If so, the data in the .DAT
    files (which are generated by this script in the %ORACLE_HOME%\OMWB\DSML_SCRIPTS\Sybase12 directory)
    may be incomplete or even corrupt and this may cause problems when the Workbench attempts to load them. The script
    reports successes and errors to the screen while it runs and you may discover what the problem could be from these reports.
    If the script does not report any errors then there should be some indication of what the problem is from the error.log
    file which can be found in %ORACLE_HOME%\OMWB\Log or from an error/warning message sent to the progress
    window in the Workbench. If you would like to send me the text of any errors you find to be reported or if you would like to
    send me copies of the files generated on your machine by the DSML script, I would be happy to investigate the problem further
    and report back to you.
    Ragards,
    Tom.

  • URGENT - Migrating from 9i to 10g designer

    Hi All,
    I have installed new repository for Designer 10g (10.1.2.0.2) and
    I have started Migration from Designer 9i (9.0.2.80.10).
    I have error message from ckrau61 with cause:
    "No Designer Repository has been detected.
    Please check connection details and try again".
    I have checked TNSNAMES.ORA and haven't found any error. Other
    software works with old repository (9i) and i have checked the TNSNAMES.ORA on the server and not on the client ... Oracle is trying to build a db link and it is tested ok.
    The Migration from 9i is not supported in 10g?
    Help-me!!!!
    Any tips would be helpful. Thanks.

    You do not have to install a new Repository and "migrate" your data to upgrade from Designer 9i to Designer 10g. You just install the 10g Designer client, connect to your existing 9i Repository and "upgrade" it to 10g.
    Please refer to the "Upgrading a Release 6i, 9i, or 10g Repository" section in the Repository Installation Guide for complete details.
    - Suresh

Maybe you are looking for

  • Accrual Reversal Issue -F.81 -Urgent please

    Hi, I have made a accrual document in the begining of september and tried to reverse in month end. But the issue issue..while trying to reverse ,the Accrual document is showing under Docs which cannnot be reversed. So what should i do  kindly help me

  • Windows 7 crashing - several triggers identified with no apparent link between them

    Hello, Since over a month i'm struggling to solve another issue with my Windows 7. Normally i should have done a clean install till now, but i also want to upgrade my system in the near future so i want to re-install windows when all my new component

  • Drag and drop onto a cd loses quality

    I shoot in RAW and the file sizes are large and I can manipulate the e-mails BUT I noitced that when I drag and dropped RAW photos on to a CD to burn the jPeg qulaity dropped. For instance a 14.5mb drops to 537kb.. I would guess I need to change some

  • Use of variable in interface

    Hello I have a variable which contains this instruction : select max(ID)+1 from table1 In an interface I try to map the ID of table1 with this variable but I always have the same error : violation of PK. I tried with a sequence too but same issue

  • Need thoughts on adding caption

    I have finished scanning a number of old family photos and have used Adobe Photoshop Elements 9 (PSE9) to "tag" and add "captions" to each photo. The photos vary in size and are saved in tif format. All of the work I have done so far was using the Or