Failed to locate source plugin in Quick Migration wizard

I'm trying to migrate a simple Sql Server 2005 database (only a few tables without data) in an oracle XE Database server .
I'm using Sql*Developer 1.5.5 and I've done connections to Sql Server and Oracle Xe without any problem.
I can connect to Sql Server and browse database objects.
I've created an Oracle Schema with the correct grants and permissions and I've associated "Migration repository"
Than I'm trying to do "Quick Migration Wizard", but when I check prerequisites there's a blocking error "Falied to locate source plugin".
This is the image : [http://img210.imageshack.us/img210/7640/15643078.jpg]
I can't find any documentation about this step and source plugin ?? What does it means ?
Any help is very appreciated !
Edited by: datasyst on Sep 3, 2009 3:19 AM

I got the same thing when I tried to migrate sql server 2008 to oracle

Similar Messages

  • Quick Migration Wizard

    Hi,
    I'm trying to migrate a SQL Server 2008 database to Oracle 11g database using the Quick Migration Wizard. The step Pre-migration check fails at 'Locating source plugin'. Can anyone help in sorting out this issue ?
    Thanks,
    RK

    http://www.oracle.com/technology/products/database/sql_developer/files/supportedmigplatforms.html
    So you'll have to downgrade your SQL Server...
    Sorry,
    K.

  • Migration Verify : Locating source plugin FAILED

    I am using SQL Developer 1.2.1 and trying to migrate from SQL Server 2008 to Oracle9i.
    When I try to do a quick migrate the verify falils the "Locating source plugin" test. All other tests were successful
    The connection to SQL Server 2008 works fine, can browse tables etc. Unfortunatly I don't have SQL Server 2005 to test against so I can't narrow down the problem

    SQL Server 2008 is not yet supported for migration. Creating connection, browsing es may work fine as these are basic Database functions. Migration is much more complex and requires specific 2008 module to be included as part of SQL Developer.

  • SQL Developer Quick Migration wizard does not list the connections

    Hi,
    I have downloaded SQL Developer 2.1 and installed it in a different folder with the option to import connection definitions from the previous version (1.5). However, when using [Quick Migration], the connections do not appear in the dropdown. Even if a new one is created...
    Does anyone know if there is a workaround ?....
    Thank you.

    Hi Boris,
    I see the confusion.
    SQL Developer "Migration" features relate to non Oracle databases, like Sybase, Microsoft SQL Server, DB2, ...
    So Quick Migrate allows you to choose a non Oracle database (connection) to migrate to Oracle.
    Moving from Oracle 10g to Oracle 11g is really a Upgrade, although sometimes the word migration is used to confuse everyone :)
    If you a upgrading an Oracle Application to Oracle 11g then there would be a specific process, check otn for this.
    If you are upgrading your own Oracle database to Oracle 11g, then there are a number of ways.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28300/toc.htm
    http://kubilaykara.blogspot.com/2008/02/upgrade-oracle-10g-database-to-oracle.html
    SQL Developer itself has a Database Copy and Database Export.
    Have a read of the doc to see which one suits.
    Regards,
    Dermot.
    SQL Developer Team

  • Quick Migrate: SQL Server database to Oracle

    When I try Quick Migrate: SQL Server database to Oracle, I get the following error messages:
    1. Locating source plugin...failed
    2. Checking multi-schema privileges...Privilege 'CREATE ROLE" is not granted with admin option.
    Error #1 I do not understand.
    Error #2: I created the user as follows:
    DROP USER GRAINTEST CASCADE
    CREATE USER GRAINTEST
    IDENTIFIED BY SQL
    DEFAULT TABLESPACE SMARTSOFT_DATA
    TEMPORARY TABLESPACE TEMP
    QUOTA UNLIMITED ON SMARTSOFT_DATA
    QUOTA UNLIMITED ON SMARTSOFT_INDEX
    GRANT CONNECT,
    RESOURCE,
    CREATE ROLE,
    CREATE VIEW,
    CREATE SESSION,
    ALTER ANY TRIGGER TO GRAINTEST
    DROP ROLE R_GRAINTST
    CREATE ROLE R_GRAINTST NOT IDENTIFIED
    GRANT R_GRAINTST TO GRAINTEST
    WITH ADMIN OPTION
    Thanks
    Murray

    Murray,
    Apologies for referring to the 1.5 documentation but the 2.1 documentation still has the same information about creating a user to hold the repository.
    You initially reported 2 problems -
    1. Locating source plugin...failed
    2. Checking multi-schema privileges...Privilege 'CREATE ROLE" is not granted with admin option.
    For the first error have you installed the necessary JDBC driver ? I have just installed SQL*Developer 2.1 on a new laptop and could successfully connect following the documentation steps -
    Oracle® SQL Developer
    User’s Guide
    Release 2.1
    2.5.2 Before Migrating From Microsoft SQL Server or Sybase Adaptive Server
    To configure a Microsoft SQL Server or Sybase Adaptive Server database for
    migration:
    1. Ensure that the source database is accessible by the Microsoft SQL Server or
    Sybase Adaptive Server user that is used by SQL Developer for the source
    connection. This user must be able to see any objects to be captured in the
    Microsoft SQL Server or Sybase Adaptive Server database; objects that the user
    cannot see are not captured. For example, if the user can execute a stored
    procedure but does not have sufficient privileges to see the source code, the stored
    procedure cannot be captured.
    2. Ensure that you can connect to the Microsoft SQL Server or Sybase Adaptive
    Server database from the system where you have installed SQL Developer.
    3. Ensure that you have downloaded the JTDS JDBC driver from
    http://jtds.sourceforge.net/.
    4. In SQL Developer, if you have not already installed the JTDS driver using Check
    for Updates (on the Help menu), do the following:
    a. Click Tools, then Preferences, then Database, then Third Party JDBC Drivers.
    b. Click Add Entry.
    c. Select the jar file for the JTDS driver you downloaded from
    http://jtds.sourceforge.net/.
    d. Click OK.
    ========
    The second error is again documented in the 2.1 documentation -
    5.99 Privilege Warning for Migration
    This dialog box is displayed if you click Verify in the Quick Migrate box and the
    database user for the connection does not have all privileges necessary for a
    multischema migration. For multischema migrations, this user must granted the
    RESOURCE role with the ADMIN option; and this user must also be granted the
    CREATE ROLE, CREATE USER, and ALTER ANY TRIGGER privileges, all with the
    ADMIN option.
    If you are performing a single-schema migration, you can ignore this warning.
    =====
    Which errors are you now seeing and which user was used to hold the repository ?
    If you are using GRAINTEST for the repository then create it using this syntax -
    CREATE USER GRAINTEST IDENTIFIED BY password <=== change password as necessary
    DEFAULT TABLESPACE users TEMPORARY TABLESPACE temp; <=== change tablespaces as necessary
    GRANT CONNECT, RESOURCE, CREATE VIEW, CREATE PUBLIC SYNONYM TO
    GRAINTEST WITH ADMIN OPTION;
    GRANT ALTER ANY ROLE, ALTER ANY SEQUENCE, ALTER ANY TABLE, ALTER TABLESPACE,
    ALTER ANY TRIGGER, COMMENT ANY TABLE, CREATE ANY SEQUENCE, CREATE ANY TABLE,
    CREATE ANY TRIGGER, CREATE ROLE, CREATE TABLESPACE, CREATE USER, DROP ANY
    SEQUENCE, DROP ANY TABLE, DROP ANY TRIGGER, DROP TABLESPACE, DROP USER, DROP ANY
    ROLE, GRANT ANY ROLE, INSERT ANY TABLE, SELECT ANY TABLE, UPDATE ANY TABLE TO
    GRAINTEST with admin option ;
    then when making the migration make sure the Oracle connection is to this user.
    Please update the thread with the errors you get after following these steps.
    Regards,
    Mike

  • Quick Migration from Access fails

    When I try to do a quick migrate from Access to XE it always fails, please help,

    You will need to provide more information.
    What fails? What error message do you get? What version of SQLDeveloper?

  • SAFARI = ERROR 'Failed to locate plugin

    SAFARI = ERROR 'Failed to locate the FastBrowserSearchPlugin plugin
    *-[BrowserWindowControler currentWebView]:
    unrecognised selector sent to instance 0X7afa00
    Any advice greatly appreciated.
    Kind regards Gline

    I couldn't locate any download site for this plugin for Mac's Safari nor can I find anything on the web except http://www.fastbrowsersearch.com/ which just loads a page to enter a search term—no plugin.
    The FastBrowserSearch Toolbar is usually bundled with other plugins. So you can get it by (for example) installing My Web Tattoo.
    There's more info on the products it can be bundled with on the page you get to when you click the "Uninstall" link at the bottom of the http://www.fastbrowsersearch.com/ page. That's where you can also find the Safari FastBrowserSearch uninstallation instructions that Bee linked the OP to.
    Message was edited by: b noir

  • Live Migration Failed while Quick Migration is Ok...Virtual machine with synthetic FC HBA !

    When I migration the virtual machine with synthetic FC HBA  in windows server 2012 R2 Cluster,it fails
    but I do it in the style of quick migraton ,it secceed!
    The error event here
    Live migration of 'Virtual Machine PTSCSQL01' failed.
    Virtual machine migration operation for 'PTSCSQL01' failed at migration destination 'PTCLS0106'. (Virtual machine ID B8FBDE64-FF97-4E9B-BC40-6DCFA09B31BE)
    'PTSCSQL01' Synthetic FibreChannel Port: Failed to finish reserving resources with Error 'Unspecified error' (0x80004005). (Virtual machine ID B8FBDE64-FF97-4E9B-BC40-6DCFA09B31BE)
    'PTSCSQL01' Synthetic FibreChannel Port: Failed to finish reserving resources with Error 'Unspecified error' (0x80004005). (Virtual machine ID B8FBDE64-FF97-4E9B-BC40-6DCFA09B31BE)
    My virtual machine's  synthetic FC HBA setting here
    做微软的先行者,享受用户体验

    Yes, definitely check your zoning/masking.  Remember that with vHBA you have twice as many WWPNs to account for.  Performing a live migration makes use of both pairs during the transfer from one host to the other - one set is active on the machine
    currently running and the second set is used to ensure connectivity on the destination.  So if you are using Address Set A on Host1, Host2 will try to set up the fibre channel connection using Address Set B.  If you do a quick migration, you would
    continue to use the same Address Set on the second host.  That's why you most likely need to check your zoning/masking for the alternate set.
    . : | : . : | : . tim

  • Quick migrate failing

    I am attempting to migrate a Mysql 5.x database to Oracle 10g. I created the connections for my databases and am able to connect to them. When I click 'quick migrate' it does
    Step: Creating Tables
    Status: Complete
    and then dies with
    Step: Script Execution Failed
    Status: Complete
    I do not see any logs on the Logging Page or Migration Log tabs.
    I am using SQL Developer 1.2.0 build MAIN-29.98
    Where can I see the logs?
    thanks,
    Jay

    I downloaded the latest version ( 1.2.1.x) and this fixed my problem. I was able to capture my databases and did several migrations of data (yeah!). Then I realized I needed to change several table and column names. Now when I try to do the capture on any db that has more than one table I get the error:
    oracle.dbtools.metadata.persistence.PersistenceException: Exhausted Resultset
    This error does not occur if I capture a single table or a db that has only one table.
    Your help is greatly appreciated.
    Jay

  • Quick Migrate SQL 2k To Oracle 10g fails

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

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

  • Problems using Quick Migrate in SQL Developer 1.5 for MySQL to Oracle 10g

    Hi all,
    I am trying to use SQL Developer 1.5 migration tools (Quick Migrate) to perform online capture and build source model to migrate from MySQL 5.x to Oracle 10g on Windows platform. I get these errors and the Quick Migrate process fails:
    oracle.dbtools.metadata.persistence.PersistableObject.doInsert(PersistableObject.java:238)
    I did a search and used the sqldeveloper.cmd script but still fails. Then I created a new database and truncated the repository. I now get the above error plus two new ones listed below:
    oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    Error loading nls:OALL8 is in an inconsistent state
    Error occurred during capture: Protocol violation
    It fails during the capture process for MySQL 5.1 database
    when it begins to capture the tables from MySQL.
    Does anyone know how to resolve these issues when migrating from MySQL to Oracle 10g using Quick Migrate with SQL Developer 1.5 release?
    Regards,
    Ben Prusinski
    Message was edited by:
    benprusinski
    Message was edited by:
    benprusinski

    Hi all,
    I put the following in my sqldeveloper.cmd file:
    SET ORACLE_HOME=%CD%
    What is very confusing is that with SQL Developer 1.5, there are several levels and several SQL Developer executables! I am really not sure which of these to use:
    I created the SQLDeveloper 1.5 directory called SQLDeveloper1_5 on Windows:
    1) cd C:\sqldeveloper1_5\sqldeveloper-5338
    there exists a sqldeveloper.exe
    2) cd c:\sqldeveloper1_5\sqldeveloper-5338\sqldeveloper\sqldeveloper.exe
    3) cd c:\sqldeveloper1_5\sqldeveloper-5338\sqldeveloper\sqldeveloer\bin\sqldeveloper.exe
    Which SQLDeveloper 1.5 executable should I be using and where should I place the
    sqldeveloper.cmd file?
    Also I did try to use a different database and schema for the repository with Quick Migrate but it appears a bug exists in SQL Developer 1.5 version that causes errors with Quick Migrate for MySQL to Oracle? Is this correct?
    As an update, I ran the following commands:
    cd to
    c:\sqldeveloper1_5\sqldeveloper-5338\sqldeveloper\sqldeveloper\bin
    sqldeveloper.cmd sqldeveloper.exe
    Start sqldeveloper.exe
    Perform standard capture for MySQL using the new mig2 schema as the new repository
    It starts the capture but fails on the errors below:
    Error loading nls:OALL8 is in an inconsistent state
    UPDATE
    ============================
    I tried this again and it worked with the exception of one error message listed below:
    Here are the steps that I followed:
    1. Create a Windows cmd script
    Put the following entries in the script:
    SET ORACLE_HOME=%CD%
    save the command windows script as sqldeveloper.cmd
    Copy this script to the base installation directory for SQLDeveloper
    Example:
    1. cd c:\SQLDeveloper1_5\sqldeveloper-5338\sqldeveloper
    2. Start SQLDeveloper with the command script that you created earlier
    Example:
    Open a Windows shell prompt window and execute the following scripts:
    a) sqldeveloper.cmd sqldeveloper.exe
    b) sqldeveloper.exe
    3) In SQL Developer 1.5
    From the Migrate menu,
    a) Delete current repository and create a new schema in Oracle target database call it mig2.
    b) Then create a new repository in SQL Developer 1.5
    c) Right mouse click on the MySQL 5.x database and choose capture
    It worked with the exception of one error message:
    o.jdbc.driver.OracleDriver     
    Error while registering Oracle JDBC Diagnosability MBean.
    So it looks like something is screwed up with my JDBC drivers and configuration for MySQL. How do I diagnose the JDBC driver issue for MySQL?
    Thanks!!!
    Ben
    Thanks
    Ben

  • ASA 5505 initial build - Failed to locate egress interface (Please help :-) )

    Hi, I have just purchased a ASA 5505 and have completed the initial setup via the wizard.  I am currently unable to access services on the outside of the ASA. 
    The error: 'Failed to locate egress interface for UDP from inside'....  appears when ever my DNS server attempts a lookup. 
    I have configured this several times from scratch using the wizard and I am unable to figure out the issue with the NAT / Routing config. 
    If I run the packet tracer I get the error: "(no-route) no route to host", however I do have a default route configured so I suspect it maybe my NAT configuration. 
    Overview, 192.168.10.0/24 inside the ASA, 192.168.1.0/24 outside the ASA, 192.168.1.1 is the gateway to the internet.  I ideally want the ASA to use PAT to mask the 192.168.10.0/24 network behind the ASAs 192.168.1.0/24 network address but still allow clients to gain internet access. 
    Full config follows, screen shots attached, any help would be very gratefully received. 
    Result of the command: "sh run"
    : Saved
    ASA Version 9.0(1)
    hostname firewall
    enable password (REMOVED) encrypted
    passwd (REMOVED) encrypted
    names
    interface Ethernet0/0
     switchport access vlan 2
    interface Ethernet0/1
    interface Ethernet0/2
    interface Ethernet0/3
    interface Ethernet0/4
    interface Ethernet0/5
    interface Ethernet0/6
    interface Ethernet0/7
    interface Vlan1
     nameif inside
     security-level 100
     ip address 192.168.10.1 255.255.255.0
    interface Vlan2
     nameif outside
     security-level 0
     ip address 192.168.1.254 255.255.255.0
    interface Vlan5
     no nameif
     security-level 50
     ip address dhcp
    ftp mode passive
    object network obj_any
     subnet 0.0.0.0 0.0.0.0
    object network Server1
     host 192.168.10.10
    object network GoogleDNS1
     host 8.8.8.8
     description Google DNS Server
    object network GoogleDNS2
     host 8.8.4.4
     description Google DNS Server
    object network 192.168.10.x
     subnet 192.168.10.0 255.255.255.0
    object network InternetRouter
     host 192.168.1.1
    object-group network DM_INLINE_NETWORK_1
     network-object object GoogleDNS1
     network-object object GoogleDNS2
    object-group service DM_INLINE_TCP_1 tcp
     port-object eq www
     port-object eq https
    access-list inside_access_in remark External DNS Lookups
    access-list inside_access_in extended permit udp object Server1 object-group DM_INLINE_NETWORK_1 eq domain
    access-list inside_access_in extended permit tcp 192.168.10.0 255.255.255.0 any object-group DM_INLINE_TCP_1
    access-list inside_access_in extended deny ip any any
    pager lines 24
    logging enable
    logging asdm informational
    mtu inside 1500
    mtu outside 1500
    icmp unreachable rate-limit 1 burst-size 1
    no asdm history enable
    arp timeout 14400
    no arp permit-nonconnected
    nat (inside,outside) source dynamic any interface
    object network obj_any
     nat (inside,outside) dynamic interface
    access-group inside_access_in in interface inside
    route outside 0.0.0.0 255.255.255.255 192.168.1.1 1
    timeout xlate 3:00:00
    timeout pat-xlate 0:00:30
    timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 icmp 0:00:02
    timeout sunrpc 0:10:00 h323 0:05:00 h225 1:00:00 mgcp 0:05:00 mgcp-pat 0:05:00
    timeout sip 0:30:00 sip_media 0:02:00 sip-invite 0:03:00 sip-disconnect 0:02:00
    timeout sip-provisional-media 0:02:00 uauth 0:05:00 absolute
    timeout tcp-proxy-reassembly 0:01:00
    timeout floating-conn 0:00:00
    dynamic-access-policy-record DfltAccessPolicy
    user-identity default-domain LOCAL
    http server enable
    http 192.168.1.0 255.255.255.0 inside
    http 192.168.10.0 255.255.255.0 inside
    no snmp-server location
    no snmp-server contact
    snmp-server enable traps snmp authentication linkup linkdown coldstart warmstart
    crypto ipsec security-association pmtu-aging infinite
    crypto ca trustpool policy
    telnet timeout 5
    ssh timeout 5
    ssh version 2
    console timeout 0
    dhcpd auto_config outside
    threat-detection basic-threat
    threat-detection statistics access-list
    no threat-detection statistics tcp-intercept
    prompt hostname context
    no call-home reporting anonymous
    Cryptochecksum:(REMOVED)
    : end

    Just to want to be sure, can you post output from show int ip brie and show route? And try to remove your ACL for testing purpose or at least don't applied it anywhere yet. 
    Once done, try do another packet-tracer to 8.8.8.8 using icmp packet instead of UDP paste the whole the output here. Before doing this, add icmp any any outside command on the ASA.
    I know this should have anything to do with your issue, because if ACL is the issue then you will see output being denied by ACL on the packet tracer output. Let us know the results.

  • Access quick migration error - missing privilege

    I'm trying to migrate an access 2000 db using the quick migrate, but when I do the pre-migration check I get a "FAILED" for "Checking target rights" - the information says "Missing privilege CREATE VIEW". The user has create view, so I'm not sure what's going on.
    Is there a way to get more details as to what causes this failure?

    just created a user:
    create user abc identified by abc;
    and granted only:
    grant connect,resource to abc;
    Now SQlDevMWB claims about missing create view privilege.
    So I granted also:
    grant create view to abc;
    and now it works well.
    So I would suggest you check the privileges manually using SQL*Plus.
    Here it would be best to define a view that collects all privileges:
    CREATE OR REPLACE VIEW DBA_USER_PRIVS (USERNAME, ROLENAME, PRIVILEGE) AS
    SELECT DECODE(SA1.GRANTEE#, 1, 'PUBLIC', U1.NAME), SUBSTR(U2.NAME,1,20),
    SUBSTR(SPM.NAME,1,27)
    FROM SYS.SYSAUTH$ SA1, SYS.SYSAUTH$ SA2, SYS.USER$ U1,
    SYS.USER$ U2, SYS.SYSTEM_PRIVILEGE_MAP SPM
    WHERE SA1.GRANTEE# = U1.USER#
    AND SA1.PRIVILEGE# = U2.USER#
    AND U2.USER# = SA2.GRANTEE#
    AND SA2.PRIVILEGE# = SPM.PRIVILEGE
    UNION
    SELECT U.NAME, NULL, SUBSTR(SPM.NAME,1,27)
    FROM SYS.SYSTEM_PRIVILEGE_MAP SPM, SYS.SYSAUTH$ SA, SYS.USER$ U
    WHERE SA.GRANTEE#=U.USER#
    AND SA.PRIVILEGE#=SPM.PRIVILEGE
    and now you can simply check:
    select * from dba_user_privs where username='ABC';
    What are the permissions for your user?

  • BBSM fails to locate client

    i have a bbsm server I'm bringing up on line. Trying to add the first site, i configured everything i think right, but the client gets a network error page, and the event log shows:
    EventID:28
    Source:BBSM_AtNotify
    Description:
    Failed to locate client ip:10.233.1.10 MAC: 00 00 00 00 00 db on any network device.
    i did a debug on the AP1200 (12.3(4)JA) i am using and see that the bbsm is talking to the bbsm. I just can't figure out what i am doing wrong.
    Debug from AP:
    Apr 26 21:30:25.694: SNMP: Packet received via UDP from 10.230.0.2 on BVI1
    Apr 26 21:30:25.695: SNMP: Get request, reqid 2739, errstat 0, erridx 0
    dot1dTpFdbEntry.2.0.12.65.249.73.219 = NULL TYPE/VALUE
    Apr 26 21:30:25.697: SNMP: Response, reqid 2739, errstat 2, erridx 1
    dot1dTpFdbEntry.2.0.12.65.249.73.219 = NULL TYPE/VALUE
    Apr 26 21:30:25.699: SNMP: Packet sent via UDP to 10.230.0.2

    There are many reason for this kind of errors.check some listed below
    http://www.cisco.com/en/US/products/sw/netmgtsw/ps533/products_user_guide_chapter09186a008019228b.html#1045412

  • Error occurred during quick migration: ORA-06502: numeric or value error

    I am very beginner on sql developer.I have a problem during a quick migration from mySQL db to Oracle DB as:
    step1: captured model processed successful
    step2: convered mode processed failed @ ORA-06502: numeric or value error
    My work environment:
    SQL Developer (2.1.1.64)
    Java platform: 1.6.0
    Oracle ide:2.1.1
    Ojdbc5.jar
    Oracle server ver. 9i
    mySQL Datatype: datetime (default_value: 0000-00-00 00:00:00) ,float,varchar(100),int(11)
    Please help me!
    Thanks in advance!
    Vien.

    kgronau wrote:
    could you please log into MySQL using mysql-utility, then change to the db (use <your mysql db) and provide the output of
    desc bars_eoptHi kgronau,
    Thanks for your response. Below is the table "bars_eopt" description from MySQL db. (first row is a description) sorry about the display is not in line as typing.
    Field     Type     Collation     Null     Key     Default     Extra     Privileges     Comment
    Bar_Index     int(11)          NO     PRI     0          select,insert,update,references
    Recipe     varchar(100) latin1_swedish_ci NO     MUL               select,insert,update,references
    Date_Time     datetime          NO          0000-00-00 00:00:00          select,insert,update,references
    ThresholdCurrent float          NO          0          select,insert,update,references     
    SlopeEfficiency     float          NO          0          select,insert,update,references     
    Pmax      float          NO          0          select,insert,update,references     
    Voltage_at_Imax     float          NO          0          select,insert,update,references     
    SeriesResistance     float          NO          0          select,insert,update,references     
    PeakWavelength     float          NO          0          select,insert,update,references     
    FWHM     float          NO          0          select,insert,update,references     
    CentroidWavelength float          NO          0          select,insert,update,references     
    Efficiency_at_Imax float          NO          0          select,insert,update,references     
    ForwardVoltage     float          NO          0          select,insert,update,references     
    FW_90_Percent     float          NO          0          select,insert,update,references     
    Emitter_at_Ith     float          NO          0          select,insert,update,references     
    Emitter_at_Imax float          NO          0          select,insert,update,references     
    Delta_Emitter      float          NO          0          select,insert,update,references     
    LOT_ID     varchar(100)     latin1_swedish_ci NO     MUL               select,insert,update,references     
    Part_Number     varchar(100)     latin1_swedish_ci     NO     MUL               select,insert,update,references     
    Pak_Number     int(11)          NO          0          select,insert,update,references     
    Pak_Position     int(11)          NO          0          select,insert,update,references     
    Tracer     int(11)          NO          0          select,insert,update,references     
    OCR     varchar(100)     latin1_swedish_ci NO                    select,insert,update,references     
    Inspection_Result varchar(100)     latin1_swedish_ci     NO                    select,insert,update,references     
    Inspection_Defect varchar(100)     latin1_swedish_ci     NO                    select,insert,update,references     
    Facette     varchar(1000)     latin1_swedish_ci     NO                    select,insert,update,references     
    Facette2     varchar(1000)     latin1_swedish_ci     NO                    select,insert,update,references     
    Upside     varchar(1000)     latin1_swedish_ci     NO                    select,insert,update,references     
    Downside     varchar(1000)     latin1_swedish_ci     NO                    select,insert,update,references     
    Thanks again and Best Regards,
    Vien.T

Maybe you are looking for

  • HI, do you know how many airport express I can use per Mac????

    I need to know how many airport express can I use simultanously in my Mac ... any idea???

  • Fixed 2755 / 1624 / 1311 errors after a year of tutility...

    I think others are out there who went through the unbelievable frustration getting new Java updates to be installed (no thanks to Sun). I was getting the errors on both my machines for at least a year. Here's what finally worked for me. 1. Save the f

  • General Error 48

    I am trying to render a graphic from motion in FCP and recieving an error message. It gets through the majority of the file and then comes back with a general error (48). It is only in one specific spot in the sequence. I can render other clips with

  • Quarter Vs week data difference

    Hi, I am running two reports: 1st report - It is based on the 2nd Quarter of the year.                  means it is restricted by using 2nd quarter. 2nd report - It is same as 1st report, except that it is based on the 12 weeks which constitute that

  • Startup key combination does not work

    Hi all, Not quite sure what I have done... Received my MacBook Pro today... I installed 10.4.8, installed boot camp 1.1.1, set a partition of 10 GB for windows and in the partition manager of the XP setup I deleted what I thought was a 100 odd MB par