DB2 (7.2.9) to Oracle Migration.

Hi,
When I use Oracle repository to get the source model, I got the message "Failed to truncate Source Model. ORA-00942 table or view does not exist". However, when I use default repository, there is no error message, but it takes too much time.
Do you know, what might be the cause of this ?
Regards, Cem

Cem,
create a fresh repository and try again. there are not enough details here for me to help you...
barry

Similar Messages

  • Queries regarding DB2 to Oracle migration

    Hi,
    I am new to working on Oracle Migration Workbench and DB2. We are evaluating Oracle Migration Workbench (OMWB )for migrating our client's database which is on DB2 Version 5 Release 2 to Oracle. Request clarifications on below listed questions:
    1/ Is OMWB capable of migrating database which is on DB2 Version 5 Release 2 to Oracle?
    2/ When I connected to the AS/400 system using Capture Wizard, the system just stays on the Source Database Window with the message "Capturing Source Database..." for an unusually long time. Is there anyway to figureout if the process is going on fine or if there is an issue?
    Thank you.
    Regards,
    Balu

    To answer you first question, we don't support that version. You will need to seek an alternative tool, like for example SQL Ways from Ispirer
    http://www.ispirer.com/products/
    Donal

  • Oracle Migration Workbench DB2 UDB 8.1 Plugins..

    I want to migrate db2 udb 8.1 database to oracle 10g ...But iam not able to find the plugins for db2 udb 8.1 in oracle site...... Oracle migration workbench is asking for db2 8.1 plugins can u suggest where i can download ....

    From an earlier post on this forum, found by searching for db2:
    No plans for DB2 V8 support in the short term. The plugins are hardwired to work against the version they are built against, so it won't work with V7. There are other alternatives out there. One example would be from Ispirer: http://www.ispirer.com/products/ or
    from SwisSQL: http://www.swissql.com/oracle-migration.html
    [I assume 'so it won't work with V7' in the source post should read 'so the db2 v7 plugin will not work with anything other than db2 v7']

  • PeopleSoft CRM 8.8 migration from DB2 UDB v8.1x to Oracle 9i Rac

    Hello,
    What is the best way to migrate a PeopleSoft CRM 8.8 application (PeopleTools 8.44) from DB2 UDB v8.1x to Oracle 9i Rac? From what I can tell I have either two options; 3rd party software or data mover. Is there a Workbench tool to do this job or is data mover my best bet.... Just an FYI...The database size is around 100GB...
    Thanks

    I would suggest that you get in contact with your Oracle account team with this request. We have groups inside Oracle with have experience migrating databases underneath PeopleSoft applications. They would be able to provide you with the best advice and assistance if required.
    Donal

  • Help on Migration from DB2 version 8.1 to Oracle 10g

    Hi All
    We have one requirement of migrating one Mainframe database to Oracle 10g. the DB version is DB2 8.1 on Z OS. We are thinking of using Oracle Migration workbench. Can someome help me know if this is supported by OMWB tool or not. I checked in oracle site, they have mentioned some details about V4R5. Could not conclude. Please confirm this. Also let me know if there is any tool that we can use or we have to go manually. Any pointrs would be highly appreciated.
    Thanks,
    Prashant

    OMWB nor its follow up product SQL Developer Migration workbench support DB2 z/OS migrations. You have to do them "manually".
    For a manual migration you might use an Oracle Gateway which allows you to use an Oracle database link to the Db database and you can then use the gateway to copy the data from Db2 to Oracle. Another alternative would be to unload the DB2 data into an ascii file and to load it into the Oracle database using SQL*Loader. You might also use Golden Gate which is commonly used to replicate data between Oracle and DB2 - but it allows you also to use it as a migration utility.
    There are also Oracle partners that can assist you with the migration - please have a look at:
    http://www.oracle.com/technetwork/database/migration/index-084442.html

  • Define BINARY DATA column (DB2 to Oracle migration)

    Have a table where a column is defined as 'FOR BIT DATA'. This specifies that the contents of the column are to be treated as bit (binary) data. During data exchange with other systems, code page conversions are not performed. Comparisons are done in binary, irrespective of the database collating sequence.
    During conversion to Oracle using Oracle Migration Workbench, this table is converted irrespective of this definition. Please see below for details:
    DB2 table definition:
    CREATE TABLE ADMIN.XENCY (
              ID INTEGER NOT NULL ,
              XENCYSYMBOL CHAR(2) FOR BIT DATA NOT NULL ,
              IN TS_XENCY ;
    Oracle table definition as generated by OMWB:
    CREATE TABLE ADMIN.XENCY
    ( ID NUMBER(10,0) NOT NULL ENABLE,
    XENCYSYMBOL CHAR(2) NOT NULL ENABLE,
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE TS_XENCY;
    During data loading from DB2 to Oracle it fails for this table with the following error:
    Type: Error
    Time: 14-08-2006 18:21:02
    Phase: Migrating
    Message: Unable to migrate data from source table ADMIN.XENCY to destination table ADMIN.XENCY : ADMIN.XENCY; ORA-12899: value too large for column "ADMIN"."XENCY"."XENCYSYMBOL" (actual: 4, maximum: 2)
    For Oracle the length of the data in this column is 4; however for DB2 it is 2 only as shown below:
    $ db2 "select max(length(Xencysymbol)) from admin.Xency with ur"
    1
    2
    1 record(s) selected.
    $     
    The distinct contents of this table is as follows:
    $ db2 "select distinct Xencysymbol from admin.Xency with ur"
    XENCYSYMBOL
    x'0024'
    x'2020'
    2 record(s) selected.
    $
    How do I define a column as containing binary data in Oracle?
    Thanks in advance.

    The MWB DB2 LUW plug-in incorrectly translates CHAR FOR BIT. Doesn't particularly pay attention to any of the CHAR modifiers. It will just see that column as a CHAR. Obviously, this is a defect.
    Binary data of limited length is stored in RAW type columns in Oracle DB.
    You have two problems (in addition to issuing an ALTER COLUMN to fix the type delcaration or dropping, tweaking the table creation script and reloading. )
    1. The data extraction scripts utilized for that table have not properly encoded the data for transport between DB systems. If there are endian differences between he source and target platform there may be additional problems. Nominally, you can export the binary data in hex format.
    2. The SQL*Loader file needs to be adjusted. (if you dump in hex format, so the data in the file is characters of a hex value )
    XENCYSYMBOL CHAR : hextoraw( : XENCYSYMBOL)
    Loader will convert those hex characters back into RAW as it loads.
    [ The  built in data pump will not work obviously because the system thinks it is a CHAR. So offline data transfer is your only option.  ]

  • Db2/400 (V5R2) to Oracle Migration.

    Can anybody tell me how can we do migration from V5R2 to oracle?
    Is there any free tool is available?
    Where can I get documentation for V5R2 to Oracle migration?

    Hi,
    I am not aware of any other tool which could help here.
    I would suggest you log a SR or contact an Oracle Sales representative.
    Regards,
    Hussein

  • Can DB2 5.2 on AIX be migrated to Oracle9i

    can DB2 5.2 on AIX be migrated to Oracle9i using Migration Workbench tool..
    is there any other way in which it can be done...
    thanx in advance
    ashish

    The OMWB will not do it, however, there are some older migration kits on http://otn.oracle.com/migration where there are DB2 kits you can tweak to do this migration.

  • Error when using Oracle Migration WorkBench (Sql Server 2k to Oracle 8i)

    I'm trying to migrate a Sql Server 2k database to an Oracle 8i schema using OMWB. After using BCP to collect metadata information on the source database, I tried to capture the source data model and got a "Capture aborted" message on the progress screen (even though then it appears a dialog window reporting "0 errors and 0 warnings", funny!). Down there is the error log OMWB generated. After reading some posts, I changed some columns of the OMWB dictionary that holds the source database name, but still got the same error. If someone can enlighten me on this toppic, I'd greatly appreciated it.
    Here's the error log of OMWB:
    ** Oracle Migration Workbench
    ** Production
    ** ( Build 20050629 )
    ** OMWB_HOME: D:\Datos\Download\Oracle\Oracle Migration Workbench\omwb
    ** user language: es
    ** 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 2000
    ** o.s. version: 5.0
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Fri Feb 23 17:18:48 GMT-03:00 2007
    ** Workbench Repository : Oracle8i Enterprise Edition Release 8.1.6.0.0 - Production
    With the Partitioning option
    JServer Release 8.1.6.0.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@ServerCms:1521:sigcewbc
    ** The following plugins are installed:
    ** Microsoft Access 2.0/95/97/2000/2002/2003 Plugin, Production Release 10.1.0.4.0
    ** Microsoft SQLServer 2000 Plugin, Production Release 10.1.0.4.0
    ** Microsoft SQLServer 6.5 Plugin, Production Release 10.1.0.4.0
    ** Microsoft SQLServer 7.0 Plugin, Production Release 10.1.0.4.0
    ** Active Plugin : SQLServer2K
    EXCEPTION :SQLServer2KDisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 15, Size: 15
    ** Shutdown : Fri Feb 23 18:00:50 GMT-03:00 2007

    Duplicate thread
    Error when using Oracle Migration WorkBench (Sql Server 2k to Oracle 8i)

  • As/400 to oracle migration (migrane)

    Dear folks,
    I am using oracle migration workbench to migrate data from AS/400 to Oracle. When I am capturing/importing data/model from source AS/400 system it shows up the databases available to be imported. Within that column it only shows the AS/400 system name instead of any relational database entry name. Therefore when I import that I only get some system tables and objects not the data files which are on the system. I dont know how to fix that so that it shows the relational database name so that I can import the data files not the system files.
    Note: There was not RDB directory entry in the AS400 system but I have created one now.
    your help is appreciated.
    Munwar Soomro.

    Hi Munwar,
    Am I correct in saying that you only see the server name in the Capture wizard?
    1)If so can you confirm that when you connected that you had privileges to see the database you wanted
    2)And if that database physically reside on the machine you connected too.
    Regards,
    Dermot

  • MySQL to Oracle Migration Issue - Unknown character set index for field.

    Hi,
    Looking for help..!!!
    Migrating mySQL - version 4 database to Oracle 10g using oracle migration work bench. It went well until the last step. But, during the data migration, OMWB has given the following error:
    +++++++++++
    Unable to migrate data from source table gets.sales_order_01 to destination table gets_ora.sales_order_oracle10: gets_ora.sales_order_oracle10; Unknown character set index for filed "12596" received from ser.
    +++++++++++
    Log file shows:
    java.sql.SQLException: Unknown character set index for field '12596' received from server.
         at com.mysql.jdbc.Connection.getCharsetNameForIndex(Connection.java:1692)
         at com.mysql.jdbc.Field.<init>(Field.java:161)
         at com.mysql.jdbc.MysqlIO.unpackField(MysqlIO.java:510)
         at com.mysql.jdbc.MysqlIO.getResultSet(MysqlIO.java:285)
         at com.mysql.jdbc.MysqlIO.sqlQueryDirect(MysqlIO.java:1326)
         at com.mysql.jdbc.MysqlIO.sqlQuery(MysqlIO.java:1225)
         at com.mysql.jdbc.Connection.execSQL(Connection.java:2278)
         at com.mysql.jdbc.Connection.execSQL(Connection.java:2225)
         at com.mysql.jdbc.Statement.executeQuery(Statement.java:1163)
         at oracle.mtg.migrationServer.LoadTableData._migrateTableData(LoadTableData.java:563)
         at oracle.mtg.migrationServer.LoadTableData.run(LoadTableData.java:326)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    I appreciate your help in this regards.
    Regards,
    K

    Hi K,
    Whats the default character set of you MySQL and Oracle Databases.
    What version of JDBC driver are you using?
    Is there any unicode characters used in your data?
    Have you tried offline data move?
    Thanks
    Dermot.
    Message was edited by:
    dooneill

  • Oracle Migration Tool

    I recently downloaded the Oracle Migration Tool for migrating a
    Microsoft Access database to Oracle8 for Linux. This migration
    tool contains the following components:
    1. Oracle Installer 3.3.0.1.3
    2. Oracle Migration Assistant for Microsoft Access 8.0.4.0.0
    3. Oracle Named Pipes Protocol Adapter 8.0.4.0.0
    4. Oracle Net8 Client 8.0.4.0.0
    5. Oracle Objects for OLE 2.2.2.2.0
    6. Oracle TCP/IP Protocol Adapter 8.0.4.0.0
    7. Oracle8 ODBC Driver 8.0.4.0.0
    8. Required Support Files 8.0.4.0.0
    I installed everything onto my Windows98 client machine. Once I
    did this, I could see the following entries in my Start Menu
    under "Oracle for Windows95":
    1. Microsoft ODBC Administrator
    2. 004002 Class Library Documentation
    3. 004022 Bound Controls and Class Library
    4. 004022 Control Notes
    5. 004022 Release Notes
    6. Oracle Home Selector
    7. Oracle Installer
    8. Oracle Migration Assistant for MS Access
    9. Oracle Objects for OLE Documentation
    10. Oracle ODBC Help File
    11. Oracle ODBC README File
    12. Oracle ODBC Test
    When I went into the Microsoft ODBC Administrator, I could also
    see that there was a new entry under the ODBC Drivers tab:
    Oracle ODBC Driver 8.00.0400 Oracle Corporation SQORA32.DLL
    12/3/97
    So far, so good.
    Then I started going through the Oracle8 ODBC help file to get
    my machine set up to start using the tool. Under "Configuration
    Tasks," it says the following:
    Before you configure the data source, you must configure Net8
    database services, so there is an entry for each Service Name.
    To do this, start the Oracle Net8 Assistant, either click on the
    Oracle for Windows NT program group and click on the Oracle Net8
    Assistant icon or from the start bar select Programs, select
    Oracle for Windows NT, and select the Oracle Net8 Assistant.
    Using the Oracle Net8 Assistant, you can create an entry in the
    tnsnames.ora file for each Service Name. The Oracle Net8
    Assistant is installed when you install Net8.
    That's when I started running into problems. Although the
    installer had shown that Net8 had been installed, I could not
    find any evidence of a Net8 Assistant on my Windows98 client
    machine. Is there a trick to starting up the Net8 Assistant?
    Until I am able to perform this step, I cannot go to the next
    step of configuring my ODBC driver.
    Any help would be appreciated.
    - Brendan
    null

    Brendan,
    I am not 100% sure, but I believe win98 is not supported.... yet.
    I know that 95 is supported, but to be honest, I do not run
    winDOZE. Maybe an upper authority from Oracle should correct me
    if I am wrong.
    Kevin
    Brendan Conner (guest) wrote:
    : I recently downloaded the Oracle Migration Tool for migrating a
    : Microsoft Access database to Oracle8 for Linux. This migration
    : tool contains the following components:
    : 1. Oracle Installer 3.3.0.1.3
    : 2. Oracle Migration Assistant for Microsoft Access 8.0.4.0.0
    : 3. Oracle Named Pipes Protocol Adapter 8.0.4.0.0
    : 4. Oracle Net8 Client 8.0.4.0.0
    : 5. Oracle Objects for OLE 2.2.2.2.0
    : 6. Oracle TCP/IP Protocol Adapter 8.0.4.0.0
    : 7. Oracle8 ODBC Driver 8.0.4.0.0
    : 8. Required Support Files 8.0.4.0.0
    : I installed everything onto my Windows98 client machine. Once
    I
    : did this, I could see the following entries in my Start Menu
    : under "Oracle for Windows95":
    : 1. Microsoft ODBC Administrator
    : 2. 004002 Class Library Documentation
    : 3. 004022 Bound Controls and Class Library
    : 4. 004022 Control Notes
    : 5. 004022 Release Notes
    : 6. Oracle Home Selector
    : 7. Oracle Installer
    : 8. Oracle Migration Assistant for MS Access
    : 9. Oracle Objects for OLE Documentation
    : 10. Oracle ODBC Help File
    : 11. Oracle ODBC README File
    : 12. Oracle ODBC Test
    : When I went into the Microsoft ODBC Administrator, I could also
    : see that there was a new entry under the ODBC Drivers tab:
    : Oracle ODBC Driver 8.00.0400 Oracle Corporation SQORA32.DLL
    : 12/3/97
    : So far, so good.
    : Then I started going through the Oracle8 ODBC help file to get
    : my machine set up to start using the tool. Under
    "Configuration
    : Tasks," it says the following:
    : Before you configure the data source, you must configure Net8
    : database services, so there is an entry for each Service Name.
    : To do this, start the Oracle Net8 Assistant, either click on
    the
    : Oracle for Windows NT program group and click on the Oracle
    Net8
    : Assistant icon or from the start bar select Programs, select
    : Oracle for Windows NT, and select the Oracle Net8 Assistant.
    : Using the Oracle Net8 Assistant, you can create an entry in the
    : tnsnames.ora file for each Service Name. The Oracle Net8
    : Assistant is installed when you install Net8.
    : That's when I started running into problems. Although the
    : installer had shown that Net8 had been installed, I could not
    : find any evidence of a Net8 Assistant on my Windows98 client
    : machine. Is there a trick to starting up the Net8 Assistant?
    : Until I am able to perform this step, I cannot go to the next
    : step of configuring my ODBC driver.
    : Any help would be appreciated.
    : - Brendan
    null

  • Error after Oracle Migration from DMTS into LMTS

    Hello ,
    I'm sorry, I posted my question again from ABAP General into this forum ABAP Dictionary. I think that here someone can help me in order to proceed with my job in the Development and in production system.
    We are using SAP R/3 4.6C, with SAP kernel 2271, Oracle 9.2.0.5 and HP-UX 11.23
    I did the Oracle migration from dictionary into locally managed tablespaces on the QTS system (and before that the same migration on a separate system as a copy from production):
    1. export data and index tablespace with Oracle export command (exp: for PSAPCLUD and PSAPCLUI)
    2. import into file for creation of indexes
    3. Drop the data and corresponding index tablesspace with brtools - brspace
    4. recreate the tablespaces with sapdba or with sqlplus (using the ddl scripts created before dropping the tablespaces) - - I think is my problem
    5. import the data with Oracle import command
    6. import the indexes from the previously created sql file
    7. check optimizer statistics, analyze and next extents
    But there is one problem.
    Because I have also used the sapdba and ddl sql for recreating the tablespaces, I didn't specify the SAP data class for the newly created tablespace.
    And in the tables TAORA, IAORA and DDART (what is very unclear for me) 3 rows missing for the USER1, TEMP and ??? data class.
    If you try to import some transport in the corresponding tablespace which data class is missing an error ocur.
    I have read the Note 646681 - Reorganizing tables with BRSPACE, and I saw the part: If the <reorg_tsp> tablespace contains any of the following tables: SDBAH,SDBAD,DBAML,DBATL,MLICHECK,TGORA,IGORA,TSORA,TAORA, IAORA,SVERS,DD02L,DD09L,DDNTT,DDART,DARTT or SAPLIKEY (SAPLIKEY is only available in NetWeaver 2004s or higher), then you should move them to the tablespace <aux_tsp> by online reorganization using BRSPACE:
    brspace -f tbreorg -t <table_list> -n <aux_tsp>
    Do you have the same problem?
    Do you know how I can solve the problem now after the hole migration was done?
    How can I dedicate tablespace data class?
    Is it enought to just enter the same rows into the TAORA, IAORA and DDART?
    Thanks,
    Many regards,
    Ruzica

    Apparently you are trying to mix 32-bit code and 64-bit code. You must ensure that the 32-bit or 64-bit option is used consistently on every command, compiling and linking. The form of the option can depend on the version of the C compiler you are using, and whether you are on an x86 or sparc system. Consult the Pro*C and C compiler documentation.

  • MS SQLServer7 and Oracle Migration Workbench

    I want to have Oracle schema name=MS SQLServer7 database name when I migrate MS SQL Server 7 database using
    Oracle Migration WorkBench ( v. 1.3.1.0.0 ).
    Then I tried to migrate NORTHWIND database from MS SQLServer7 Oracle Migration WorkBench have created user SA
    and tablespace NORTHWIND in the destination Oracle database
    By default MS SQL Server database names are mapped to the Oracle tablespaces, but there is an option 'Tablespace discoverer' to change destination tablespace.
    But I do not see an Oracle Migration WorkBench option to make Oracle schema name=MS SQLServer7 database name.
    Only ways I see :
    1) to use 'Generate Migration Scripts' option
    in menu 'Action' and edit the scripts manually
    ( I do not like it, unless you cannot suggest script to automate
    this task )
    2) Rename Oracle user ( user='SA' in my example ) to
    'NORTHWIND' after migration , but how to do it ( ALTER USER) ?
    Thanks,
    Michael.

    Mishel,
    Another alternative is to alter the MS SQLServer7 database owner to NORTHWIND using
    sp_changedbowner (T-SQL)
    Changes the owner of the current database.
    before migrating the database.
    Turloch
    Oracle Migration Workbench Team
    null

  • Can Oracle Migration Workbench 2.0.2.0.0 be used to migrate SQL 7.0 to Oracle 8i?

    Hi,
    Does anyone know that can Oracle Migration Workbench 2.0.2.0.0
    be used to migrate SQL 7.0 to Oracle 8i? or the version
    2.0.2.0.0 can be only used for Oracle 9i?
    I failed to install Oracle Migration Workbench 2.0.2.0.0 onto my
    workstation(running Oracle 8.1.7), because it need Oracle 9i.
    Thanks
    Leo Siu

    One more question: where can I download the Oracle Migration
    Workbench 1.4.1.0.0 in order to migrate non-oracle database to
    Oracle 8i?
    Thanks

Maybe you are looking for

  • Error in GOODS Receipt .Integreation Config with FI

    hi, When i am configuring the Integration FI to  MM in GOODS RECEIPT .It throws this Message .Check table-169P entry XYZ does not Exist .Here XYZ is my company code . Pl..Thanks in Advance Satish

  • How to record vhs tape to mac

    how to record vhs tape to mac

  • Error in Split-Join when invoke similliar B.Service with same namespace

    Hi Guys, I having a split-join that doing parallel spliting call out to business service. And i encounter this error. Severity and Description Path Resource Location Creation Time Id Error compiling the Schema Type System: error: sch-props-correct.2:

  • SRM Contract Distribution Error

    Dear All,       Our ERP system 6 EHP 4,And we active the LOG_MM_P2PSE_1,And SRM 7.0,Now we used "Set Up Synchronous Service",Didn't use PI,We according sap notes:1268821 configure the Central Contract Management,Now when we create the Central Contrac

  • Helps on date format

    Hi all, I got the column in table A where the date format is dd/mm/yyyy ( 01/03/2005), and another table B where the date format is dd/mm/yyyy HH24:MI:SS. So in order to let the two table to talk to each other, I hv the following query B.transaction_