Migrating Sybase users to Oracle

I am migrating a lists of users from Sybase to Oracle. These users are created in Oracle with connect and resource privileges. I would only want the users to have create session privilege. Is there a way to specify the privilege before users are created?
thanks.

Hello,
There is a round about way for doing this. Can you generate the migration scripts, and do a find replace for the "connect, resource" privileges and replace it with the "create session" previlege.
Alternatively, once the database is migrated, you can write up a small script that will change the privileges in the destination table.
Not very sure if we can change these options in the workbench itself before we migrate.
Regards,
Srinivas Nandavanam

Similar Messages

  • SQL Developer 3.1 not migrating Sybase Users to Oracle 11g R2

    I have tried both online and offline capture and the Sybase users are not being captured (Tables, Views, Procedures Worked). I searched this forum and saw another post about this issue but the Oracle representative never came back with a final finding/answer. We have 1000+ users to migrate so all help is appreciated.

    Hello.
    sorry for the delay (if you need quicker response I suggest that you open a Service Request in My Oracle Support).
    In your first post you said that you tried online and offline migration. So for an offline migration you have created the scripts using the Create Database Capture Scripts menu button. Then you have run that scripts against Sybase. Has there been created a file SYB15_SYSUSERS.dat (or SYB12_SYSUSERS.dat if your Sybase version is 12)? If that file has been created, does it contain anything or is it empty?
    Regards
    Wolfgang

  • 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

  • Sybase group to oracle roles

    I've been testing Sybase to Oracle migration using SQL Developer 3.1.06 release. I dont see the user/groups on the Sybase is not getting converted in respective roles in Oracle. Am i missing something here? Any help is much appropriated.
    Thanks
    ~ G

    Looks like a open issue. My Query is very similar to one below. Any update on this? Is this a know issue on SQL Developer migration option for Sybase? Can someone confirm..
    SQL Developer 3.1 not migrating Sybase Users to Oracle 11g R2

  • Sybase Timestamp in Oracle

    Hi,
    I am in the process of migrating Sybase database to oracle 10g.
    In Sybase there is a column exist in most of the tables with datatype Timestamp, the data looks like 0x467469786abfc324, this is automatically generated while inserting or updating a table.
    Is this equivalent to rowid in Oracle? or please suggest a equivialent solution in oracle.
    Thanks,
    DJ

    Yes. The Sybase Timestamp is essentially a surrogate row identifier and should not be moved into Oracle.
    In Oracle, especially with newer technologies such as Advanced Compression, we enable and expect row movement so it is rowids
    should not be treated as static. If you need a surrogate key then create a SEQUENCE object and use that to generate the surrogate key.

  • Problems with Sybase 12 to Oracle 10g migration

    Hi,
    I'm using SQL Developer to test a migration between Sybase and Oracle and it doesn't work (both online and offline)
    I've create a dedicated user account and connection, with the roles and privileges required (as seen in http://download.oracle.com/docs/cd/B32485_01/doc/appdev.110/b31695/migration.htm#i1005739)
    I've created the migration repository without any problems (using the above user account).
    QUICK MIGRATION
    - select the source Sybase connection: OK
    - select the target Oracle connection: OK
    - select the referential: OK
    - verify privileges before migration: OK
    - migrate tables only and click Next
    ## window closes and nothing happens ## - nothing on Captured Model pane
    CAPTURE SOURCE SYBASE DATABASE
    - right click on the Sybase connection in the Connections pane
    - choose Capture Sybase
    ## window closes and nothing happens ## - nothing on Captured Model pane
    OFFLINE CAPTURE
    - create database capture scripts: OK
    - launch the database scripts (SYB12_OFFLINE_CAPTURE.BAT): OK
    - load database capture script output (sybase12.ocp)
    ## window closes and nothing happens ## - nothing on Captured Model pane
    I can't find any relevant logs or trace from the application.
    I even tried to use the capture file sybasemigration.zip from the "Migrating a Sybase Database to Oracle Database 11g" web page (http://www.oracle.com/technology/obe/hol08/sqldev_migration/sybase/migrate_sybase_otn.htm), but the result was the same.
    Does anyone encountered the same problems? Does someone knows where are the logs (if any)?
    Thanks in advance.
    Regards,
    Pedro

    Hi Pedro,
    What version of SQL Developer are you using?
    Can you browse your Sybase connection in SQL Developer, to see its tables for example?
    If not, then you may need to point SQL Developer to your JTDS 1.2 driver again.
    Are you capturing a non system database ? SQL Developer wont migration master or tempdb ...
    Can you try running SQL Developer from the command line and watch the command line for any errors during the capture.
    \sqldeveloper\bin\sqldeveloper.exe
    Regards,
    Dermot
    SQL Developer Team

  • Migrating Sybase "timestamp" data type to Oracle DB

    Hi,
    We are migrating huge Application currently running on Sybase database
    to Oracle 10.2.0.3 (500+ Tables and Stored Procedures).
    Have following questions regarding this Migration.
    1) Many of the Sybase Tables have column which is of Sybase data type "timestamp".
    Do you have any recommendation what is the data type to be used in Oracle for
    migrating "timestamp" data type in Sybase?
    2) How should we migrate existing data and business logic residing in Sybase for
    data columns of Sybase data type "timestamp" ?
    Given below are details on how we use Sybase timestamp Column in our Application
    and we are trying to arrive at the best Solution that is possible for migrating
    all those Tables and related business logic to Oracle.
    We have following Control Table in Sybase which has column of timestamp data type and
    some other Business keys.
    sp_help EQP_IES_CRE_TIMESTAMP (This is similar to desc <table> command in Oracle)
    EQP_IES_CRE_TIMESTAMP,dbo,user table
    default,Nov 14 2001 10:39AM
    CRE_TIMESTAMP ,timestamp,8,,,0,,,,0
    REF_NUM ,char,30,,,0,,,,0
    REC_UPD_DT ,datetime,8,,,1,,,,0
    EQP_IES_CRE_TIMESTAMPI1,clustered, unique located on default, CRE_TIMESTAMP, REF_NUM, REC_UPD_DT,0,0,0,
    Following is the overall logic used in Sybase
    -- Step 1: Based on Event, populate Control Table with new Row.
    -- CRE_TIMESTAMP timestamp Column gets auto-populated by Sybase
    insert EQP_IES_CRE_TIMESTAMP (REF_NUM, REC_UPD_DT)
    values (@uuid_ref_num, @event_cre_dt)
    Since CRE_TIMESTAMP is auto-populated, it does not appear in above INSERT statement.
    -- Step 2: Store timestamp value populated by Sybase in previous step,
    -- to variable @event_timestamp. This value would be referenced
    -- later in other SQL statements
    select @event_timestamp = CRE_TIMESTAMP
    from EQP_IES_CRE_TIMESTAMP
    where REF_NUM = @uuid_ref_num
    and REC_UPD_DT = @event_cre_dt
    -- Sample value for @event_timestamp could be '001c0000182f2089'
    -- It is not very readable or understandable
    -- Step 3: Delete Control Table entry made in Step 1
    delete EQP_IES_CRE_TIMESTAMP from EQP_IES_CRE_TIMESTAMP
    where CRE_TIMESTAMP = @event_timestamp
    -- Step 4: Make use of saved timestamp value from Step 2 to trigger queries
    -- against other Tables that have timestamp Columns
    -- Some sample queries are as shown below
    delete eqp_staging
    where event_timestamp > @event_timestamp;
    insert into eqp_movement values(@event_timestamp, ......other columns) ;
    Any idea how above Table and logic could be migrated to Oracle DB
    We would also like to know how data values that currently exist
    in Sybase Tables should be populated in Oracle .
    Any suggestions or tips would be greatly appreciated
    Thanks
    Auroprem

    Hi All,
    Thanks for your responses.
    We have decided on Solution to migrate "timestamp" Column from Sybase to Oracle, that is
    specific to our Application needs.
    Following is what we decided:
    1) Create RAW Column in Oracle which would contain data Replicated from Sybase "timestamp" Column as is.
    2) Create additional Column of INTEGER data type to store number equivalent of Sybase "timestamp" column
    which would be more usable and consummable in Oracle as compared to RAW datatype.
    3) Write Row-Level INSERT/UPDATE Trigger on migrated Oracle Table to populate INTEGER Column using
    SQL Function TO_NUMBER(<raw_column_value>, 'xxxxxxxx').
    4) Applications that access this Table, upon migration to Oracle, will now start referencing INTEGER Column
    newly defined, and populated via Trigger.
    Please let us know if you see any issues with this approach
    Thanks
    user641521

  • 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.....

  • Migration from sybase 11 to Oracle 9i

    Hi,
    I have to migrate all db objects (tables structures,table data,triggers,sp) from Sybase 11 to Oracle 9i
    There are currently two free tools -
    Migration workbench (http://www.oracle.com/technology/tech/migration/workbench/index.html )
    and
    SQL Developer( http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html )
    for this purpose.
    SQL developer has a provision to convert scripts which I can use for SPs and scripts one @ a time.
    Problem is migrating table structures along with data.
    from SQL developer I can't connect to sybase thou I provide all the details and from workbench in the online mode I need the sa login which is not possible as the database is live and @ client side.
    SQL Loader can be used but will require to make CSV files from each sybase table and hence is time consuming.

    Hi,
    Migration Workbench is not available for Sybase database.
    As you can see on this website:
    http://www.oracle.com/technology/tech/migration/workbench/files/mig_rel10104.html
    Only Informix and DB2 database are supoprted now with this product.
    With SQL Developer, we only support last versions of Sybase : V12 and V15.
    As you don't have any remote access to your client database and no SA login , the best way would be :
    ==>to get and export from Sybase 11.
    ==>install a V12 somewhere (on your site , you can download the Sybase V15 )and import the Sybase database
    Then SQL developer can migrate quickly your database without any problem.
    I hope it helps you.
    Mireille

  • 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

  • Migrating table from Sybase 12 to Oracle 10g

    Hi ,
    We have a situation where we have to migrate multiple Sybase databases to Oracle10g . These multiple database have same set of tables but different data in these tables on each sybase database ( data differ, based on location or region wise but same table name and structure). We want to migrate all these sybase database to Oracle 10g and in single database, which involves inserting data from multiple tables ( though they exist on different database in sybase) into single Oracle table.
    for example if we have a table 'TESTK' that exist on five different sybase database but with different region wise data. I want to bring data from these five tables( Five as they exist in five differet sybase databases) and insert them into a single oracle table 'TESTK' .
    Have anybody ever face such scenerio , what are all possible approch please suggest. Once data is inserted into oracle table i need to partitioned this oracle table as well.

    It is not quite clear whether you have multiple tables (referencing each other) in multiple sybase databases or either one table or several non connected tables in multiple sybase databases.
    In the first case of course your task is harder because you need to keep references and most probably you cannot blindly copy data from db 1, db 2 and unite them because they can have the same id's coming from different sources.
    In the second case your task of course is much easier you can simply load all your data in Oracle tables either using some interim tables (if you need to filter out duplicates) or load data straight into target tables if you are sure you haven't duplicates.
    Also another question in case 1 is whether intersection of your data is 0 rows i.e. all data are completely different in each source db or not.
    So I'm sure you can find tools for blindly moving data from sybase to Oracle, although if you need to do some more complex filtering, computation or whatever you most probably need to write it yourself.
    I'v done a few data conversion projects from one schema to another and as the requirements were quite complex the only possibility for us was to initiate a separate data conversion project and create conversion software (pl/sql packages manually).
    You can find an overview of our approach in my article "Data migration from old to new application: an experience" here http://www.gplivna.eu/papers/legacy_app_migration.htm
    Gints Plivna
    http://www.gplivna.eu

  • Migration from Sybase 11 to Oracle 8i

    I am trying to migrate a Sybase DB to Oracle 8i. The platform of Sybase system is VMS and Oracle is UNIX. Can I use workbench to migrate between two different platform?
    If not, is it the only way to export sybase to a flat file and then load to Oracle using SQL loader?
    Thanks

    Hi,
    Migration Workbench is not available for Sybase database.
    As you can see on this website:
    http://www.oracle.com/technology/tech/migration/workbench/files/mig_rel10104.html
    Only Informix and DB2 database are supoprted now with this product.
    With SQL Developer, we only support last versions of Sybase : V12 and V15.
    As you don't have any remote access to your client database and no SA login , the best way would be :
    ==>to get and export from Sybase 11.
    ==>install a V12 somewhere (on your site , you can download the Sybase V15 )and import the Sybase database
    Then SQL developer can migrate quickly your database without any problem.
    I hope it helps you.
    Mireille

  • 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

  • Sybase ASE to Oracle Database 11g Migration

    Hi,
    I am looking for documentation on migration from Sybase ASE to Oracle Database 11g Migration.
    Front End application is Peoplesoft.
    Please suggest documentation on the same.
    I look forward to you reply.
    Best regards
    Sonali

    Have a look at the SQL Developer tool:
    Oracle SQL Developer&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;Oracle SQL Developer&quot;&gt;&lt;meta n…
    It contains a migration utility which allows you to migrate foreign databases to Oracle:
    Database Migration Technology&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;Database Migration Technology&q…
    Documentation and videos are available from the migration wbe page.
    - Klaus

  • 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

Maybe you are looking for

  • How do I upload attachment to a e mail?

    How do I upload a attachment to and email message? Using my iPad air

  • Shopping cart View

    Hi, I have a report which contains 10+ shopping carts cretaed by user XYZ But when I try to see the details of this shopping cart it falls into error "The following error text was processed in the system DE1 : Attribute for user contains errors. Info

  • Need an extension for indesign cs2 that exports latest version of pdfs

    we're using ID CS2, no plans to go to a more recent version.  Currently latest version of pdf that it will export to is pdf 7.  current versions of web browsers don't display properly, i imagine because they're expecting a more recent version pdf.  i

  • Footnotes in Dreamweaver

    Is there the capability of including legitimate footnotes in a Dreamweaver page?  By that I mean where the superscripted number automatically updates when another footnote is added above it on the page, and where the footnote reference automatically

  • OS x 10.5.8 to Lion

    I have a MacBook, OS X 10.5.8 and want to upgrade to Lion when it is released.  Do I need to install a different operating system before Lion such as Snow leopard?  Thank you.