Migration Informix 7.3- Oracle 10g r2, no FK constraints

I have this configuration:
Latest version of OMWB.
** Workbench Repository : Oracle Database 10g Release 10.2.0.3.0 - 64bit Production
Repository Connection URL: jdbc:oracle:thin:@172.xx.xx.xx:1521:somesid
** The following plugins are installed:
** Informix Dynamic Server 7.3 Plugin, Developers Release 10.1.0.4.0
** Informix Dynamic Server 9.x Plugin, Production Release 10.1.0.4.0
** Active Plugin : Informix7
I migrated all tables and data, but... foreign key constraints ARE NOT migrated. This option was selected on appropriate panel, so there shoud not be any problem.
At the end of migration proces there were these several errors in the log:
Migrating Failed to connect to /@172.xx.xx.xx:1521:somesid. Check the password in the user's Creation Options in the Oracle Model to make sure it is correct.
Passwords are OK. Data is migrated.
Is this error connected with "FK constraints missing" problem or not?
Any idea what to do with these constraints or "Failed to connect" error?
Noaid

I assume you see the FKs in the source model of OMWB under a certain user and if you now check out the Oracle model in OMWB this dedicated user misses the FK's, correct?
To see if the problem is related to the password error, you could perform the offline source model migration.
Run the script IDS7_DSML_SCRIPT.BAT/DS7_DSML_SCRIPT.sh located in Omwb\offline_capture\Informix7 on the Informix server as informix user. You'll get 2 directories conatining some DAT files. Then zip both directories and transfer them to the OMWB machine, unzip them into the same directory again and open OMWB and perfrom an offline source model migration by refering to the directories of the DAT files.
If the FK's are still missing, log a service request and upload the ZIP files to the sevrice request.

Similar Messages

  • Migration from DB2 to Oracle 10g using free tools

    Dear all,
    Im currently using DB2 database and wish to migrate data over to Oracle 10g express. However, i could not find any free tools or methods to migrate without using tools as i could not use tools like Oracle Migration Workbench as the migration is for certain project which will deal with internal process or commercial purpose.
    Would like to seek everybody's help. Greatly appreciation your response.
    Regards,
    Kee Cheng =)

    nvr4getu wrote:
    Thanks. But have you heard of creating a heterogenous services, create a database link between the 2 database, then transform over to Oracle?I thought you were looking for a free tool. With HS, you'll have to buy the component to install on the DB2 system. Unless something has changed since the last time I worked in a mixed Oracle/DB2 shop.

  • Migrate Ingres database to Oracle 10g

    Hi there,
    Anyone knows any tool that would help migrate Ingres db to Oracle 10g database? And has anyone does this problem can provide some inputs.
    Thanks

    Please check in workbench ( oracle), if not then I belive you need make the flat files of data and load in to Oracle.
    --Girish                                                                                                                                                                                                                                                                   

  • How to Migrate DB2 database to Oracle 10g R2 with this Developer Workbench

    Hi
    Can anybody tell how to migrate all the data which is present in DB2 to Oracle 10g Release2 through this tool. will it be possible to migrate all the data(tables,stored procedures,views,etc)?.
    if anybody knows how to do it please provide me the entire steps for the same.
    I am in bad need of help to Migrate my database to Oracle 10g R2
    Thanks in expectation,
    Selva

    Selva,
    The link for plugins is: http://www.oracle.com/technology/software/tech/migration/workbench/index.html. You can find DB2 plugins at the bottom of the page.
    Regarding the migration procedure, you can start by reading this document:
    http://www.oracle.com/technology/tech/migration/workbench/htdocs/101040/user_guide/book.pdf
    Good luck,
    andrei

  • Migration of Forms6i to oracle 10g

    We have some D2k applications and we need to migrate from forms6i(Client Server) to webForms (oracle 10g). i have downloaded Oracle Application Server 10g Release 2 (10.1.2.0.2). and tried installing it on VISTA 32 bit. But it is showing me Operating system error .
    Please could tell me if this Version of oracle is compatiable with windows Vista you help me in solving my problem I need to install it .

    It's always a good idea to read the installation guide (especially chapter software requirements) BEFORE starting an installation. You would know current AS software does not support VISTA.
    Werner

  • How to migrate a table from ORACLE 10g to 8i

    have table named 'liuxg_tab_01' in 10g.
    This morning I exported this table using 'exp' and then tried to imp it into 8i, I failed.
    After a while, I created a database link named 'ctf' in 8i which connected to 10g. I issued 'create table test as selct * from liuxg_tab_01@ctf',it returns 'ORA-01723'.
    Then I extraced the DDL of 'liuxg_tab_01' from 10g with QUEST TAOD, it's:
    CREATE TABLE LIUXG_TAB_01
    OWNER VARCHAR2(30 BYTE),
    OBJECT_NAME VARCHAR2(30 BYTE),
    SUBOBJECT_NAME VARCHAR2(30 BYTE),
    OBJECT_ID NUMBER,
    DATA_OBJECT_ID NUMBER,
    OBJECT_TYPE VARCHAR2(19 BYTE),
    CREATED DATE,
    LAST_DDL_TIME DATE,
    TIMESTAMP VARCHAR2(19 BYTE),
    STATUS VARCHAR2(7 BYTE),
    TEMPORARY VARCHAR2(1 BYTE),
    GENERATED VARCHAR2(1 BYTE),
    SECONDARY VARCHAR2(1 BYTE)
    But I can not create a table using the upper DDL in 8i if I do not wipe off those "BYTES".
    After creation of the table using the upper DDL without those 'BYTES', I sucessfully executed 'insert into LIUXG_TAB_01 select * from liuxg_tab_01@ctf'.
    Anyone has a better method to move a table from ORACLE 10g to 8i?

    1) The particular version of 8i and 10g in use here would be useful. I'm not sure that Oracle supports database links between any version of 8i and any version of 10g, though, so you're probably lucky that it worked as well as it did.
    10g 10.1.0.3.0 and 8i 8.1.7.0.0
    2) What version of the export utility did you use? You would need to use the 8i version to generate the dump file to have any chance of working, not the 10g verion.
    I use the 'exp' provided with 10g 10.1.0.3.0 and 'imp' with 8i 8.1.7.0.0. I have tried to export data directly from 10g 10.1.0.3.0 using 'exp' provided with 8i 8.1.7.0.0. Failed.
    3) Why? Since 8i is desupported, there isn't a lot of call for tools to move data from supported releases to unsupported releases.
    We have an 8i DB which is still porivding insentive services. We just wanna migrate some tales from 10g to it.
    FYI, NLS_LENGTH_SEMANTICS was introduced in 9i, so it's no suprise that 8i objected to the BYTE keyword in the DDL.
    What's FYI :P
    Another option would be to generate a CSV file of the data from 10g and use SQL*Loader to load it into 8i. Not sure this would be any easier, though.
    Justin
    Message was edited by:
    user510846

  • Converting Informix data to Oracle 10g

    Hi,
    We are planning to convert data on Informix 5.x based legacy system over to Oracle 10g.
    Wondering if anyone would like to share some light on this process, experience, use of Oracle or Other tools..
    Regards,
    Subhash

    Are you looking to convert your data alone or do you wish to maintain the structure of the your legacy system? If you wish to retain the structure of your legacy system then something like like the oracle workbench may be what you are looking for. If you are just trying to convert your data from one database application to another then you just need an analyst map out your conversion needs and a good conversion programmer to convert the data.

  • Best way to migrate Access data into Oracle 10g?

    what's the best and easiest way to migrate MS Access database into Oracle10g?
    Thanks

    you can check out this thread ms access db to oracle 10g
    <p>also as neil mentioned you need an ODBC to established a database connection between ms access and oracle. be sure that the tables are existing in oracle so you move the data from ms access to oracle tables.</p>

  • Migrating from SQL to Oracle 10g -- Oracle Migration Work Bench

    All
    I've come across this tool from Oracle for Migrating SQL and mySQL databases to Oracle 10g. But the procedure and documentation was not clear. I wanted to try this once and hence I am posting here.
    Could you please share your experiences if you have also tried this one already? All your inputs will be of great help in helping me understand this tool and its usage.
    Thank you.
    Regards!
    Sarat.

    Sarat Chandra C wrote:
    All
    I've come across this tool from Oracle for Migrating SQL and mySQL databases to Oracle 10g. But the procedure and documentation was not clear. I wanted to try this once and hence I am posting here.
    Could you please share your experiences if you have also tried this one already? All your inputs will be of great help in helping me understand this tool and its usage.
    Thank you.
    Regards!
    Sarat.Could you please share what specific questions you have? What points of the documentation you found "unclear"?

  • Migrate Informix 11 to Oracle 11g

    Hi,
    Are there any Oracle or third-party tools to assist with the migration of a database from Informix 11 to Oracle 11g? All the stuff I've found seems to stop at Informix 9.
    Thanks
       Brian

    Hi Brian,
      If your management do not want to pay for Dg4Informix then you could use the Database Gateway for ODBC (DG4ODBC) which is included in your RDBMS license but needs a third-party ODBC driver.  It has less functionality than the DG4Informix but can be used for simple processing.
    See the following -
    Note.233876.1   Options for Connecting to Foreign Data Stores and Non-Oracle Databases (Doc ID 233876.1)    
    Note.252364.1   Functional Differences Between DG4ODBC and Specific Database Gateways (Doc ID 252364.1)
    Regards,
    Mike

  • Quick Migrate SQL 2k To Oracle 10g fails

    Has anyone come across a solution for the following:
    Error ocurred during capture: ORA-24816: Expanded non LONG bind data supplied after actual LONG or LOB column
    When using the quick migrate feature of SQL Developer 2.1.1.64 to import a SQL Server 2000 database into Oracle 10g. I am also using JTDS 1.2.5.
    Any assistance would be appreciated - thanks in advance.
    Edited by: user13281085 on Jun 10, 2010 4:34 PM

    Hi,
    I found a reference to a cause for this error available in My Oracle Support -
    ORA-24816 On Insert Statement (Doc ID 746333.1)
    When attempting to insert data into a table that contains LOBs, received the following error during insert.
    INSERT INTO catentdesc (NAME, LONGDESCRIPTION, XMLDETAIL, AVAILABLE, PUBLISHED) VALUES (?, ?, ?, ?, ?)
    ERROR
    Ora-24816: expanded non long bind data supplied after actual long or lob column
    The table definition is:
    Name Null? Type
    NAME VARCHAR2(128)
    LONGDESCRIPTION CLOB
    XMLDETAIL CLOB
    AVAILABLE NOT NULL NUMBER(38)
    PUBLISHED NOT NULL NUMBER(38)
    The workround was to change the insert -
    INSERT INTO catentdesc (NAME, AVAILABLE, PUBLISHED,
    LONGDESCRIPTION, XMLDETAIL) VALUES (?, ?, ?, ?, ?);
    where the lob columns are positioned at the end of the statement.
    This is fixed in the 11.2 RDBMS.
    ========
    To follow up we would need to know the statement causing the problem and the definition of the SQL*Server table involved.
    Could you do a manual capture and generate the scripts for the Oracle table creates ?
    Regards,
    Mike

  • Migration using data pump Oracle 10g - Oracle 11g

    HI all,
    1)
    Right now I`m using Oracle 11g. I have a plan to import data from Oracle 10g. I would like to know if its possible to import data which was exported by datapump on Oracle 10g ?
    Should I convert somehow expdp output from Oracle 10g to Oracle 11g format ?
    2)
    Next question is. If I will use expdp to create dump of complete database. May I use *.dmp to import selected users ? Or only full database can be restored ?

    Yes, you can import 10g dump into an 11g database.
    Maybe you should take some time and read the section on datapump in the fine Oracle® [Database Utilities|http://download.oracle.com/docs/cd/B28359_01/server.111/b28319/dp_import.htm#i1007324] manual.
    :p

  • Migrating MySQL5 database to Oracle 10g - refrential integrity constraints

    On migrating MySQL5 database to oracle, referential integrity constraints are not migrated to Oracle. Capture stage shows it has captured the constraints but constraints are missing from the Oracle Model. Is this a bug? If not, what I need to do to get constraints migrated.

    Check out *URGENT* Does Oracle SQL Developer able to migrate tables relationships?
    K.

  • Migration Informix/Solaris to Oracle/Solaris

    Hi,
    which way to migrate from Informix 9.2 for Sun Solaris to Oracle9 for Sun Solaris is the best one? As I understood Migration Workbench is used only for Oracle for Windows.
    Regards, Vitaly

    Hello,
    Thanks for the reply... I have already checked the note...
    I have checked the parameter max_file_size which is 2TB...
    No Restriction on Solaris 5.9 and Oracle...
    What other information do you need....
    Thanks,
    RaHuL...

  • Migration of DB400 to Oracle 10g R2, not working in Step 1 of 4 (capture)

    Hello,
    I have performed the steps mentioned in the documentation and read me file, and started the C:\omwb\bin\omwb.bat
    In the step 1 of the wizard, i am supposed to enter: user name, password and host. I do so, but nothing happens.
    Is there any way to see logs, or why is not moving to Step 2?
    Were you confronted with this in the past?
    Thanks a lot,
    Michael

    Hi kgronau,
    Thanks for your reply.
    I have managed to connect (i placed the whole contents of the jt400.zip inside the driver folder, and then proceeded with all the .jar files directly in the drivers and it worked), BUT i have another problem:
    My DB400 is V5R4, and Oracle Migration Benchmark that i have (i think it's from 10g edition) can capture only the: V4R3 and V4R5.
    So nothing for Version 5 from DB2400?
    I will take a look if i find something at 11g?
    Thanks a lot,
    Michael

Maybe you are looking for

  • Power view display more than 500 values in a field

    From my research, it looks like the limit of values in a Power View filter is 500.  does anyone if this is configurable to increase (which I am doubting based on Microsoft's website as I've copied below).  If it is not configurable and we cannot disp

  • "Authentication failed. User is already authenticated as a different user."

    Hello, Initially I was not able to log into the Visual Admin. When I logged into the Visual Admin, I got authenication failed. I reset the password of Administrator in the User Administration on the portal. Now I can log into the Visual Admin using t

  • I just want mp3

    I downloaded my first song from Itunes today.I got it as a m4p or something like that. I was told by many people who use Itunes, that I could get mp3 format. I like the Itunes selection, but I do not like propietary formats or players.I will not use

  • Can I switch my Creative Cloud Everything to just Photoshop CC & Lightroom 5.

    I want to switch my Creative Cloud Membership to just Photoshop CC & Lightroom since those are the only Adobe programs I am using. The price cut is a big differnce.

  • Adding network user as admin

    Hi, We are binding our Macintoshes to AD and I have a script that does the binding and sets the user as admin of their machine. However, they are only admin of their own machine if they are logged in to their account on the network. I have the laptop