Migrate Sybase DB to SQL

Hello,
We are currenlty running PeopleSoft FIN 9.0 on Sybase. We plan to migrate from Sybase to SQL 2005. Has anyone done this? Any direction would be greatly apperciated.

Please don't cross post same topic on multiple forums. This could cause people wasting time on issue that might have resovled. And make it's harder to search the answer to certain topic.
Like said, this is Oracle Technical Forum, posting a topic of two totally irrelevant products, kinda funny.

Similar Messages

  • SQL Developer not migrating Sybase data

    Hi,
    I am trying to migrate data using the SQL developer tool from a Sybase database to Oracle 11g. When using the Migration Repository, I am able to recreate the schema but am not able to export the database content. (i.e. Not able to do the Data Move). I tried doing a Offline migration but the generated datamove files does not have any content. Anyone aware of any issue with the data migration tool with SQL developer ?
    I have tied exporting data from the table directly to generate SQL inserts but even this is not helping. Any suggestions ?
    Regards,
    Nelson

    Hi Nelson,
        Could you detail the exact steps you followed and what options you chose at each of the panels in the migration steps ? this will help to see where you may be having problems.
    Regards,
    Mike

  • Migrating Sybase code to Oracle 11g

    Hi All,
    We have to migrate Sybase code to Oracle 11g.
    When we are doing a SELECT .. INTO in Sybase , even if the query is returning more than 1 row , sybase selects 1 of the rows and populates the variables.
    But while migrating this code to oracle, we are getting TOO_MANY_ROWS Exception.
    We need to migrate the code from SYBASE to ORACLE without disturbing the logic.
    Can someone please tell me the logic applied by SYBASE to pick up the record?
    And if someone has faced this issue, then what can be done to resolve this.
    Regards,
    Riddhisha Khamesra

    The result 3 is the last entered record (not the amount of records..).
    So the first approach to write a dummy procedure that will select all records in Oracle like:
    CREATE OR REPLACE PROCEDURE last_record
    v_arg1 OUT NUMBER
    AS
    BEGIN
    SELECT col1
    INTO v_arg1
    FROM tt_tmp ;
    END;
    and hopefully returns only the last record will fail with:
    SQL> variable outvar number
    SQL> exec last_record (:outvar)
    BEGIN last_record (:outvar); END;
    ERROR at line 1:
    ORA-01422: exact fetch returns more than requested number of rows
    ORA-06512: at "SYSTEM.LAST_RECORD", line 9
    ORA-06512: at line 1
    One possible approach to get the last (and only the last) record that was entered into the table is to use rownum:
    The select might look like "select col1 from (select col1, rownum from tt_tmp order by rownum desc) where rownum=1;"
    So the procedure can be coded as:
    CREATE OR REPLACE PROCEDURE last_record
    v_arg1 OUT NUMBER
    AS
    BEGIN
    SELECT col1
    INTO v_arg1
    from (select col1, rownum from tt_tmp order by rownum desc) where rownum=1;
    END;
    Now calling it in SQL*Plus:
    SQL> variable outvar number
    SQL> exec last_record (:outvar)
    PL/SQL procedure successfully completed.
    SQL> print :outvar
    OUTVAR
    7
    The value 7 is the last record I've inserted into my tt_tmp table:
    SQL> select * from tt_tmp;
    COL1 COL2
    1 1
    2 2
    8 8
    7 7

  • Migration Sybase 12.5 to Oracle 10G R2

    Hi,
    I'm planing to migrate some Sybase ASE 12.5 databases to Oracle 10g Release 2.
    The source database reside on Windows 2000 and Target database ( oracle 10g) will be running on Linux. Any idea if Oracle Migration workbench will support such scenerio where Source and Target will be on different OS platform if yes then how to approch and plan such migration, as we have to migrate mostly tables no views or procedures. Is using BCP ( on sybase) and then SQL loader ( on oracle 10g) will be an better approch ,if we use sql loader then how to migrate/create table structure, indexes and constraints etc from source to target .
    If anybody have idea please let me know or mail me , any help on this will be greatly appreciated.
    Regards
    Amit
    [email protected]

    Hi Amit,
    The Oracle Migration Workbench (OMWB) will migrate your tables, views, indexes for you to Oracle. Download it to you windows PC, it can can conneced to Sybase and generate the translated tables to your Oracle database on linux.
    If your databases only has a small amount of data (lets say <1GB), you could perform an online data move, where the OMWB 0 "pumps" the data from your Sybase database to Oracle using JDBC. Larger amounts of data are better moved using BCP and SQL Loader, but the OMWB can generate these scripts for you.
    Check out the OMWB here
    http://www.oracle.com/technology/tech/migration/index.html
    Regards,
    Dermot

  • How to migrate sybase esql files(.cp files) to oracle pro*c files(.pc files

    I need to migrate sybase esql files(.cp files, c file with sybase embedded sql) to Oracle pro*c files (.pc files, c file with oracle embedded sql) , could anyone let me know whether there are any tools for this or the process how to migrate.
    Thanks in advance.

    I don't think there are any commercially available tools that can do this particular type of conversion. Your best bet is to re-write the app or try something like this: http://linux.windows9download.net/go/3-153300-0-download.html (open ESQL) that supports multiple databases. I don't know how good it is or if it will work with latest versions of Oracle so no guarantees. Our old migration workbench used to convert the Informix eSQL C programs to Pro*C but no Sybase esql c.
    Regards
    Prakash

  • Migrating Sybase Anywhere 8.0 to Oracle 10g

    I was asking Oracle help to develop a plugin whereby my company could use it as a tool to help us to migrate to Oracle 10g from Sybase Anywhere 8.0.
    However I was refer to here by someone from Oracle.
    Anyone have experience on this?
    Thanks
    Steven

    Steven,
    You could try SQL Developer Migration Workbench
    http://www.oracle.com/technology/tech/migration/workbench/index.html
    Oracle Migration Workbench
    The Oracle Migration Workbench is a tool that simplifies the process of migrating Sybase, Informix, and DB2 databases to the Oracle platform (Oracle9i and Oracle10g)*. The Oracle Migration Workbench migrates the entire database schema, including triggers and stored procedures, in an integrated, environment

  • Migrating Sybase 12.5 to Oracle 9i 2 on Solaris Box -

    I am trying to migrate sybase 12.5 using the migration script generated .dat files in omwb. It is showing o errors but except for some built in procedures nothing is available.
    **************** My error.log file is **********
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Wed Mar 17 16:54:50 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Wed Mar 17 17:03:30 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    ** Shutdown : Wed Mar 17 17:10:14 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 10:57:57 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.sql.SQLException: [MERANT][ODBC Sybase ASE driver]Login Failed, Check for vaild user ID, server name and password
         at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcConnection.initialize(Unknown Source)
         at sun.jdbc.odbc.JdbcOdbcDriver.connect(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at java.sql.DriverManager.getConnection(Unknown Source)
         at oracle.mtg.sybase12.server.SybaseServiceImpl.getDatabases(SybaseServiceImpl.java:690)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._populateDatabases(SybaseCaptureWizard.java:1428)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.wizardValidatePage(SybaseCaptureWizard.java:897)
         at oracle.ewt.wizard.WizardPage.processWizardValidateEvent(Unknown Source)
         at oracle.ewt.wizard.WizardPage.validatePage(Unknown Source)
         at oracle.ewt.wizard.BaseWizard.validateSelectedPage(Unknown Source)
         at oracle.ewt.wizard.BaseWizard.doNext(Unknown Source)
         at oracle.ewt.wizard.BaseWizard$Action.actionPerformed(Unknown Source)
         at oracle.ewt.button.PushButton.processActionEvent(Unknown Source)
         at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at oracle.ewt.button.PushButton.activate(Unknown Source)
         at oracle.ewt.lwAWT.AbstractButton.processMouseReleased(Unknown Source)
         at oracle.ewt.lwAWT.AbstractButton.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEventImpl(Unknown Source)
         at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.Dialog$1.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    ** Shutdown : Thu Mar 18 11:11:39 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 11:18:00 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    ** Shutdown : Thu Mar 18 11:21:37 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 13:12:53 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.lang.OutOfMemoryError
    _closeConnections waiting for connection to be released!
    Connection was locked in :
    java.lang.Exception
         at oracle.mtg.plugin.server.ConnectionCache._checkForFreeConnection(ConnectionCache.java:353)
         at oracle.mtg.plugin.server.ConnectionCache.getConnection(ConnectionCache.java:94)
         at oracle.mtg.migrationServer.DatabaseAccess.getRepositoryConnection(DatabaseAccess.java:333)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:234)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 13:34:52 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.lang.OutOfMemoryError
    _closeConnections waiting for connection to be released!
    Connection was locked in :
    java.lang.Exception
         at oracle.mtg.plugin.server.ConnectionCache._checkForFreeConnection(ConnectionCache.java:353)
         at oracle.mtg.plugin.server.ConnectionCache.getConnection(ConnectionCache.java:94)
         at oracle.mtg.migrationServer.DatabaseAccess.getRepositoryConnection(DatabaseAccess.java:333)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:234)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 14:58:31 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.lang.OutOfMemoryError
    _closeConnections waiting for connection to be released!
    Connection was locked in :
    java.lang.Exception
         at oracle.mtg.plugin.server.ConnectionCache._checkForFreeConnection(ConnectionCache.java:353)
         at oracle.mtg.plugin.server.ConnectionCache.getConnection(ConnectionCache.java:94)
         at oracle.mtg.migrationServer.DatabaseAccess.getRepositoryConnection(DatabaseAccess.java:333)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:234)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 15:05:25 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.lang.OutOfMemoryError
    ** Shutdown : Thu Mar 18 15:15:07 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 15:15:12 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    ** Shutdown : Thu Mar 18 15:34:28 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 18 15:34:44 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.sql.SQLException: Data size bigger than max size for this type: 252643
    java.sql.SQLException: Data size bigger than max size for this type: 252643
         at oracle.mtg.disconnectedModel.GeneratePreparedStatement.setPreparedStatementValues(GeneratePreparedStatement.java:274)
         at oracle.mtg.disconnectedModel.MetadataFileParser._executePreparedStatement(MetadataFileParser.java:343)
         at oracle.mtg.disconnectedModel.MetadataFileParser.endElement(MetadataFileParser.java:208)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1120)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:293)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:260)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:175)
         at oracle.mtg.disconnectedModel.MetadataFileParser.loadData(MetadataFileParser.java:302)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.populateSourceModel(Sybase12DisconnSourceModelLoad.java:1144)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:285)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    java.sql.SQLException: Data size bigger than max size for this type: 252643
    java.sql.SQLException: Data size bigger than max size for this type: 252643
         at oracle.mtg.disconnectedModel.GeneratePreparedStatement.setPreparedStatementValues(GeneratePreparedStatement.java:274)
         at oracle.mtg.disconnectedModel.MetadataFileParser._executePreparedStatement(MetadataFileParser.java:343)
         at oracle.mtg.disconnectedModel.MetadataFileParser.endElement(MetadataFileParser.java:208)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1120)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:293)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:260)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:175)
         at oracle.mtg.disconnectedModel.MetadataFileParser.loadData(MetadataFileParser.java:302)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.populateSourceModel(Sybase12DisconnSourceModelLoad.java:1144)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:285)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    java.lang.ArrayIndexOutOfBoundsException: 0
         at oracle.mtg.migrationServer.DetailedReport._getDatabaseIds(DetailedReport.java:1042)
         at oracle.mtg.migrationServer.DetailedReport.create(DetailedReport.java:160)
         at oracle.mtg.migrationUI.ReportMenuHandler.run(ReportMenuHandler.java:158)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    ** Shutdown : Thu Mar 18 16:06:29 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Fri Mar 19 10:54:06 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    ** Shutdown : Fri Mar 19 10:59:01 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Fri Mar 19 13:47:11 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.lang.OutOfMemoryError
    _closeConnections waiting for connection to be released!
    Connection was locked in :
    java.lang.Exception
         at oracle.mtg.plugin.server.ConnectionCache._checkForFreeConnection(ConnectionCache.java:353)
         at oracle.mtg.plugin.server.ConnectionCache.getConnection(ConnectionCache.java:94)
         at oracle.mtg.migrationServer.DatabaseAccess.getRepositoryConnection(DatabaseAccess.java:333)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:234)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 08:37:08 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.lang.OutOfMemoryError
    _closeConnections waiting for connection to be released!
    Connection was locked in :
    java.lang.Exception
         at oracle.mtg.plugin.server.ConnectionCache._checkForFreeConnection(ConnectionCache.java:353)
         at oracle.mtg.plugin.server.ConnectionCache.getConnection(ConnectionCache.java:94)
         at oracle.mtg.migrationServer.DatabaseAccess.getRepositoryConnection(DatabaseAccess.java:333)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:234)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 08:44:27 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    ** Shutdown : Thu Mar 25 08:52:43 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb\Omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 09:49:41 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    ** Shutdown : Thu Mar 25 10:12:56 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 10:17:49 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 10:26:23 JST 2004
    ** Shutdown : Thu Mar 25 10:26:25 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    ** Shutdown : Thu Mar 25 10:27:06 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 10:27:36 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    Exception occurred during event dispatching:
    java.lang.NullPointerException
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._updateMetadataFileSelections(SybaseCaptureWizard.java:2068)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.actionPerformed(SybaseCaptureWizard.java:2043)
         at oracle.ewt.button.PushButton.processActionEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWButton.processActionEvent(Unknown Source)
         at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at oracle.ewt.button.PushButton.activate(Unknown Source)
         at oracle.ewt.lwAWT.AbstractButton.processMouseReleased(Unknown Source)
         at oracle.ewt.lwAWT.AbstractButton.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEventImpl(Unknown Source)
         at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.Dialog$1.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Exception occurred during event dispatching:
    java.lang.NullPointerException
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._updateMetadataFileSelections(SybaseCaptureWizard.java:2068)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.actionPerformed(SybaseCaptureWizard.java:2043)
         at oracle.ewt.button.PushButton.processActionEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWButton.processActionEvent(Unknown Source)
         at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at oracle.ewt.button.PushButton.activate(Unknown Source)
         at oracle.ewt.lwAWT.AbstractButton.processMouseReleased(Unknown Source)
         at oracle.ewt.lwAWT.AbstractButton.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEventImpl(Unknown Source)
         at oracle.ewt.button.PushButton.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Window.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.Dialog$1.run(Unknown Source)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    ** Shutdown : Thu Mar 25 10:34:27 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 11:08:10 JST 2004
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    Exception :Sybase12DisconnSourceModelLoad.loadSourceModel(): oracle.mtg.migration.MigrationStopException: java.lang.IndexOutOfBoundsException: Index: 2, Size: 2
    ** Shutdown : Thu Mar 25 11:14:07 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 11:14:33 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 11:16:00 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.sql.SQLException: Data size bigger than max size for this type: 584252
    java.sql.SQLException: Data size bigger than max size for this type: 584252
         at oracle.mtg.disconnectedModel.GeneratePreparedStatement.setPreparedStatementValues(GeneratePreparedStatement.java:274)
         at oracle.mtg.disconnectedModel.MetadataFileParser._executePreparedStatement(MetadataFileParser.java:343)
         at oracle.mtg.disconnectedModel.MetadataFileParser.endElement(MetadataFileParser.java:208)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1120)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:293)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:260)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:175)
         at oracle.mtg.disconnectedModel.MetadataFileParser.loadData(MetadataFileParser.java:302)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.populateSourceModel(Sybase12DisconnSourceModelLoad.java:1144)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:285)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    java.lang.OutOfMemoryError
    java.lang.NoClassDefFoundError: oracle/mtg/informix7/ui/Informix7ESQLFolder
         at oracle.mtg.migrationUI.MigrationUI._dispatchObjectCommand(MigrationUI.java:3031)
         at oracle.mtg.migrationUI.MigrationUI.commandIssued(MigrationUI.java:648)
         at oracle.sysman.emSDK.client.guiComponent.commandAdapter.CommandAdapter.deliverEvent(CommandAdapter.java:442)
         at oracle.sysman.emSDK.client.guiComponent.commandAdapter.CommandAdapter.commandIssued(CommandAdapter.java:455)
         at oracle.sysman.emSDK.client.guiComponent.commandAdapter.CommandAdapter.actionPerformed(CommandAdapter.java:417)
         at oracle.ewt.lwAWT.lwMenu.LWMenuItem.processActionEvent(Unknown Source)
         at oracle.ewt.lwAWT.lwMenu.LWMenuItem.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at oracle.ewt.lwAWT.lwMenu.LWMenuItem.activate(Unknown Source)
         at oracle.ewt.lwAWT.lwMenu.laf.VertMenuItemController.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.lwMenu.LWMenuItem.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.event.tracking.GlassMouseGrabProvider$Disp._redispatchEvent(Unknown Source)
         at oracle.ewt.event.tracking.GlassMouseGrabProvider$Disp._redispatchEvent(Unknown Source)
         at oracle.ewt.event.tracking.GlassMouseGrabProvider$Disp.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEventImpl(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    ** Shutdown : Thu Mar 25 11:26:11 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 11:26:26 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 12:28:06 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.sql.SQLException: Data size bigger than max size for this type: 576636
    java.sql.SQLException: Data size bigger than max size for this type: 576636
         at oracle.mtg.disconnectedModel.GeneratePreparedStatement.setPreparedStatementValues(GeneratePreparedStatement.java:274)
         at oracle.mtg.disconnectedModel.MetadataFileParser._executePreparedStatement(MetadataFileParser.java:343)
         at oracle.mtg.disconnectedModel.MetadataFileParser.endElement(MetadataFileParser.java:208)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1120)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:293)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:260)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:175)
         at oracle.mtg.disconnectedModel.MetadataFileParser.loadData(MetadataFileParser.java:302)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.populateSourceModel(Sybase12DisconnSourceModelLoad.java:1144)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:285)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    java.lang.OutOfMemoryError
    ** Shutdown : Thu Mar 25 12:39:43 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 12:39:54 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.sql.SQLException: Data size bigger than max size for this type: 576636
    java.sql.SQLException: Data size bigger than max size for this type: 576636
         at oracle.mtg.disconnectedModel.GeneratePreparedStatement.setPreparedStatementValues(GeneratePreparedStatement.java:274)
         at oracle.mtg.disconnectedModel.MetadataFileParser._executePreparedStatement(MetadataFileParser.java:343)
         at oracle.mtg.disconnectedModel.MetadataFileParser.endElement(MetadataFileParser.java:208)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1120)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:293)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:260)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:175)
         at oracle.mtg.disconnectedModel.MetadataFileParser.loadData(MetadataFileParser.java:302)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.populateSourceModel(Sybase12DisconnSourceModelLoad.java:1144)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:285)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    Dropping with : drop user omwb_emulation cascade
    Recreating with : CREATE USER omwb_emulation IDENTIFIED BY oracle
    Recreating with : GRANT CONNECT, RESOURCE, CREATE PUBLIC SYNONYM TO omwb_emulation
    ** Shutdown : Thu Mar 25 13:14:03 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 13:34:27 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    java.sql.SQLException: Data size bigger than max size for this type: 572276
    java.sql.SQLException: Data size bigger than max size for this type: 572276
         at oracle.mtg.disconnectedModel.GeneratePreparedStatement.setPreparedStatementValues(GeneratePreparedStatement.java:274)
         at oracle.mtg.disconnectedModel.MetadataFileParser._executePreparedStatement(MetadataFileParser.java:343)
         at oracle.mtg.disconnectedModel.MetadataFileParser.endElement(MetadataFileParser.java:208)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1120)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:293)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:260)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:175)
         at oracle.mtg.disconnectedModel.MetadataFileParser.loadData(MetadataFileParser.java:302)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.populateSourceModel(Sybase12DisconnSourceModelLoad.java:1144)
         at oracle.mtg.sybase12.server.Sybase12DisconnSourceModelLoad.loadSourceModel(Sybase12DisconnSourceModelLoad.java:285)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.doCapture(SybaseCaptureWizard.java:748)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard._runDialog(SybaseCaptureWizard.java:583)
         at oracle.mtg.sybase12.ui.SybaseCaptureWizard.capture(SybaseCaptureWizard.java:493)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:213)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:90)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:269)
    Dropping with : drop user omwb_emulation cascade
    Recreating with : CREATE USER omwb_emulation IDENTIFIED BY oracle
    Recreating with : GRANT CONNECT, RESOURCE, CREATE PUBLIC SYNONYM TO omwb_emulation
    ** Shutdown : Thu Mar 25 13:53:57 JST 2004
    ** Oracle Migration Workbench
    ** Production Release 9.2.0.1.7
    ** ( Build 20031209 )
    ** OMWB_HOME: C:\software\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_01
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows XP
    ** o.s. version: 5.1
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Thu Mar 25 13:55:27 JST 2004
    ** Workbench Repository : Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.1.0 - Production
    Repository Connection URL: jdbc:oracle:thin:@jptky122unx:1521:CIA
    ** The following plugins are installed:
    ** Sybase Adaptive Server 12 Plugin, Production Release 9.2.0.1.7
    ** Active Plugin : Sybase12
    ** Shutdown : Thu Mar 25 14:17:51 JST 2004
    Thanks,
    S. Ganesh
    JAPAN

    Whats in the error.log of the migration workbench. This should work fine.....

  • Related to migration of db from sql server to oracle 11 g

    We're trying to migrate a Sql server managment studio database to Oracle 11g using SQL Developer 4.0. We can successfully connect to both Sql server managment studion 8.0 and Oracle 11g using the tool, as well as click through the Migration Wizard and start the migration.
    This opens the Database Migration dialog box, which indicates the capture process starts normally. we get the following error:
    ora :01440 : can not insert null into migrlog (id column) ,
    \and then after some time , i get an error that migration failed
    i am not getting the reason,I thing it may be due to reason that , I have table's column in my source db with more than 30 character.
    If i am migrating one by one table . then it is not giving any error, and identifier name is getting shrink in 30 character. but i am not getting the view , stored procedure , indexes , and others
    then what is the solution  for that, somebody pls suggest any help?????????????               

    Pl do not post duplicates - related to migration of db from sql server to oracle 11 g
    Continue the discussion in your original thread
    The error message is explicitly clear
    ora :01440 : can not insert null into migrlog (id column)
    Your process is trying to insert a NULL value into the ID column, which presumably cannot be NULL

  • Migration from phpMyAdmin to SQL

    Hi Guys,
    I need your help, I made one website on PHP with the database of MySQL now as i want to shift the database into the MSSQL. 
    What should i do? as i am new to the technology. Can anyone the step by step Tutorial for that or anyone can tell me i would be really appreciable.
    I have Xampp Server for PHP.
    Let me know for any other information if required.
    Thanks in advance 

    Hello,
    You can use SSMA utilty to migrate your databases to SQL Server as mentioned by Prashanth.
    To connect to SQL Server from PHP or Linux, please use the following web resource:
    http://www.sqlcoffee.com/OpenSource.htm
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Heterogeneous Migration of BW on SQL Server to BW on HANA Issue

    Hi,
    I am performing Heterogeneous migration of BW on SQL Server to BW on HANA  according to the procedure mentioned in the SAP Documentation.
    Started the migration using Software Provisioning Manager.
    I have ran SMIGR_CREATE_DDL and ran export of source system and it is completed successfully.
    Then I ran the Import of Target system. The import ran into issues when running the script SAPVIEW, the script resulted in failure when creating views.
    (DB) ERROR: DDL statement failed
    (CREATE VIEW "V_TRALAN" ( "PGMID" , "OBJECT" , "OBJ_NAME" , "AUTHOR" , "DEVCLASS" , "MASTERLANG" , "COMPONENT" , "NAMESPACE" , "TPCLASS" , "GENFLAG" , "DLVUNIT"  ) AS SELECT T0001."PGMID", T0001."OBJECT", T0001."OBJ_NAME", T0001."AUTHOR", T0001."DEVCLASS",  T0001."MASTERLANG", T0002."COMPONENT", T0002."NAMESPACE", T0002."TPCLASS", T0001."GENFLAG", T0002."DLVUNIT" FROM "TADIR" T0001, "TDEVC" T0002 WHERE T0002."DEVCLASS" = T0001."DEVCLASS")
    DbSlExecute: rc = 103
      (SQL error 259)
      error message returned by DbSl:
    invalid table name:  Could not find table/view TDEVC in schema SAPXXX: line 1 col 386 (at pos 385)
    I found that there are many tables which are missing in HANA Schema but exists in Source system database.
    I checked the export scripts like *.STR and *.EXT and does not see those tables being captured.
    Example table: TTREE exists in Source System database , but missing in HANA Database Schema SAPXXX.
    Not sure what is the problem and how can I fix this issue. I was planning to manually move the missing tables from Source database to HANA Database schema, but that will be too much and I am not sure how many of them are missing.
    Please let me know how can I fix this issue?
    Thanks.
    Syed

    Hi,
    can you please have a look on this issue,
    4 ETW000  [dbsdbsql.cpp,00000]  *** ERROR =>   prepare() of C_0000, rc=1, rcSQL=259 (invalid table name:  Could not find table/view DDNTT in schema SYSTEM: line 1 col 32 (at pos 31))
    4 ETW000                                                                                                1426  0.111569
    4 ETW000  [dbslsdb.cpp ,00000]  *** ERROR => SQL PREPARE on connection 0, rc=259 (invalid table name:  Could not find table/view DDNTT in schema SYSTEM: line 1 col 32 (at pos 31))
    4 ETW000                                                                                                  23  0.111592
    Regards,
    Srini

  • Gateway for Sybase or MS SQL - support for Timestamp

    Hi All,
    Is there any way to get Timestamp data out of Sybase or MS SQL Server?
    I thought this would be pretty straightforward, but after a short investigation I'm no longer that optimistic...
    The "Database Gateway for Sybase User's Guide" says in Appendix A, that the following conversions are performed by the gateway:
    (Sybase - Oracle)
    DATE - DATE
    DATETIME - DATE
    SMALLDATETIME - DATE
    TIMESTAMP - RAW
    TIME - CHAR(15)
    It says the same for MS SQL Server.
    What I need is a conversion from Sybase DATETIME into Oracle TIMESTAMP, but I'm guessing there is a limitation of the Gateway
    and it is not able to use the millisecond data in any way... Am I right?
    Or maybe there is some magic setting in the .ini file for this? Things like HS_NLS_TIMESTAMP_FORMAT seem to be unsupported by Sybase gateway.
    I'm using 11.2.0.1 on Linux.
    Thanks for any hints.

    Hi,
    As you have seen in the documentation the Sybase and SQL*Server datatime columns are translated as Oracle DATE datatypes, so the milisecond data will be lost.
    the 11.2 DG4MSQL Users Guide actually says -
    SQL*Server Oracle Comment
    DATETIME DATE Fractional parts of a second are truncated
    although the Dg4Sybase Users Guide has the same conversion it does not have the comment.
    The only way round it would be use a different non-Oracle datatyp from which you could extract the millesecond part of the string.
    Regards,
    Mike

  • Migrating a table from SQL server 2005 to oracle 9i

    Hi
    I need to migrate a table from SQL server to oracle, both of which are on different machines, I tried using SQL server DTS export functionality selected the Oracle driver, created a DSN, but it gave error message box as shown below
    Error Source: Microsoft OLE DB Provider for ODBC Drivers
    "ORA 12560 :TNS protocol adapter error"
    Context:Error During initialization of the provider
    While i was successfully able to migrate the table from SQL SERVER to MS-ACCESS and from MS ACCESS to Oracle
    thanks
    abhishek

    Hi
    thanks warren, i just figured out that the DSN i had created while migrating data from Access to oracle was User DSN, i just created a system DSN of the similar kind and was successfully able to export the data from SQL server to oracle, the only problem being the column names in SQL server are longer than the limit of 30 characters we have in ORACLE..
    Regards
    Abhishek

  • OS/DB migration from Win/MS SQL TO IBM i

    Here is a novel situation. Our implementation partner wants us to install there pre-configured ECC 6.0 EHP6 system. However they have a win/MS SQL system and we have a IBM i system. We have considered trying scc7/scc8 client export/import but we are not sure this is going to work. Looks like our last option is to do a fully fledged OS/DB migration from the win/sql to our IBM i.
    Has anyone done this before? Any idea on the level of complexity? How long we should reasonably allow for the process?
    Thanks
    Matthew Milne

    Hi Matt,
    nice to hear from you ;-))
    As they have doen in their system ABAPs and other repository changes, there is no chance with client copy etc.
    The only useful way is a full OS/DB migration.
    In this case, it makes it even simpler for you ;-)
    They will do an export with SAPinst towards iSeries.
    You will import this export (with a migration key) on iSeries - works 99% as an installation - as they want the system in the SAME way as they do have, you even do not need to install support packs at the end - so you can say: this way makes it easier for you ;-))
    You can contact me, then we can discuss in detail (that is the way, that I always prefer to install new customers ...)
    Regards
    Volker Gueldenpfennig, consolut

  • What methods are available to migrate Data from MS SQL to Oracle DB 11g.

    Hi,
    Need to know the No of ways/ Techniques via we can Migrate data from MS SQL Server to Oracle DB 11g.
    Thanks ,
    NL

    hi,
    i came across this link in oracle demos :
    http://st-curriculum.oracle.com/obe/db/hol08/sqldev_migration/mssqlserver/migrate_microsoft_sqlserver_otn.htm
    the migration process using sql developer
    br,
    mrak

  • Migrating Oracle Databases to SQL Server 2000

    Hi friends,
    I wanna to Migrating Oracle Databases to SQL Server 2000.
    But i don have idea abt that.
    could u plz help how to start and procced.
    Neeraj Goel

    Hi Neeraj,
    This forum is dedicated to Migrating from SQLServer and other third party databases to Oracle.
    Not the other way round.
    The Oracle Migration Workbench facilitates migrations to Oracle.
    Regards,
    Dermot.

Maybe you are looking for