Migrate to oracle from my-sql

I have this database running in my-sql. nOw i want to convert into ORACLE.Can anyone shed light on this please..does sql loader
support this?
Thanks in advance..your help will be much appreciated..
ashish

vipinvijay wrote:
Hi All,
In my application, the existing database is oracle. we need to migrate from Oracle db to My SQL.
We need to have the below procedure;
1.export data from Oracle.
2.Import data to My SQL from the exported oracle file.
and vice versa from My SQL to Oracle.
my questions are
1) is it possible to import .dmp (oracle export data) into My SQL. No you cannot use .dmp which are exported from oracle using exp/expdp utility
2) which tool is better for this migrationUse sql developer to migrate from oracle to my sql
3) Can we get the migration scripts from the tools?Explore sql developer you'll get easy migration
http://www.oracle.com/technetwork/database/migration/mysql-093223.html
http://www.oracle.com/technetwork/database/migration/sqldevelopermigration21-wp-131240.pdf
Here is demonstration which will help you to migrade to oracle from mysql
http://www.oracle.com/technetwork/database/migration/mysqllauncher-086083.html
From oracle to mysql
http://www.ispirer.com/doc/sqlways-oracle-to-mysql-whitepaper.pdf

Similar Messages

  • Migrating Japanese Characters from MS SQL Server 2000 to Oracle 9i usng Jsp

    Hi ,
    I have a situation where the Japanese characters are to be migrated from MS SQL Server 2000 to Oracle 91 and then render the same using JSP.
    I followed the below approach,
    1. Extract the Japanese data from MS SQL Server and generate an XML
    2. Parse the XML and store it into Oracle 9i database which is of UTF-8 encoding.
    3. On retreiving and rendering using the Shift-JIS adds few junk characters additionally.
    When I try to copy paste the Japanese contents from XML to a text file, it is working fine.
    Could some one help me in resolving this issue?
    It is very urgent, and any help would be greatly appreciated.

    There is documentation in the reference guide sent with the workbench, there is this discussion forum, the support web page (which includes tech notes and FAQ's), and the company specific procedural language documentation.
    There is also an older document for use with the old sybase toolkits which may be obscelete, and there are some internal documents which were for internal consumption.
    Turloch
    Oracle Migration Workbench Team

  • Using Oracle from MS SQL 2005

    I am having a strange problem while running an SQL statement in MS SQL 2005 that uses a linked Oracle server. I am getting the following error:
    OLE DB provider "OraOLEDB.Oracle" for linked server "OG" returned message "ORA-01403: no data found".
    Msg 7346, Level 16, State 2, Line 1
    Cannot get the data of the row from the OLE DB provider "OraOLEDB.Oracle" for linked server "OG"
    I am getting the error on the following SQL statement (OG is the Oracle server):
    SELECT Inv.AreaNo, Inv.CatType, Inv.CatNo, Inv.ItemNo, Inv.NumAvail, Inv.NumTotal, Inv.Active,
    IH.AID, IH.NumOut, IH.DateOut, IH.WorkerOut, IH.NumIn, IH.DateIn, IH.WorkerIn,
    CC.CatID, CC.CatName, CC.BinItem, CC.Active, OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    FROM ItemInventory AS Inv
    LEFT JOIN CatCodes AS CC ON Inv.AreaNo = CC.AreaNo AND Inv.CatType = CC.CatType AND Inv.CatNo = CC.CatNo
    LEFT JOIN ItemHistory AS IH ON Inv.AreaNo = IH.AreaNo AND Inv.CatType = IH.CatType AND Inv.CatNo = IH.CatNo AND
    Inv.ItemNo = IH.ItemNo
    LEFT JOIN OGL..D.LE AS OG ON AID = OG.PK
    WHERE Inv.AreaNo = 0 AND Inv.CatType = 0
    What's strange is that the following SQL statement works fine. The only difference between table ItemHistory (above) and ItemsOut (below) is that ItemHistory adds 3 columns that ItemsOut does not have. Other than that table the SQL statements are the same (as you can see).
    SELECT Inv.AreaNo, Inv.CatType, Inv.CatNo, Inv.ItemNo, Inv.NumAvail, Inv.NumTotal, Inv.Active,
    IO.AID, IO.NumOut, IO.DateOut, IO.WorkerOut, '1' AS NumIn, '1/1/1900' AS DateIn, '1' AS WorkerIn,
    CC.CatID, CC.CatName, CC.BinItem, CC.Active, OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    FROM ItemInventory AS Inv
    LEFT JOIN CatCodes AS CC ON Inv.AreaNo = CC.AreaNo AND Inv.CatType = CC.CatType AND Inv.CatNo = CC.CatNo
    LEFT JOIN ItemsOut AS IO ON Inv.AreaNo = IO.AreaNo AND
    Inv.CatType = IO.CatType AND Inv.CatNo = IO.CatNo AND
    Inv.ItemNo = IO.ItemNo
    LEFT JOIN OGL..D.LE AS OG ON AID = OG.PK
    WHERE Inv.AreaNo = 0 AND Inv.CatType = 0
    As a test I tried just running an SQL statement against ItemsHistory and the Oracle table, thinking it might be something with ItemsHistory, but the following command also runs just fine:
    SELECT ItemHistory.*, OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    FROM ItemHISTORY
    LEFT JOIN OGL..D.LE AS OG ON AID = OG.PK
    I'm not sure why the one SQL statement is erroring out with ORA-01403. I see no problems with it, as it is the same as the one that works except using a different table, and another SQL statement using the table in the erroring SQL works also. I'm stumped!
    I am using the 'OraOLEDB.Oracle' provider in SQL 2005.
    Thanks for any help you can give on this...

    I've been testing it, and I've found that if I comment out 4 fields from the field list (all from the same table), it runs. As soon as I add any one of the 4 fields back into the select list, I get the Oracle error. I also found that I had to change the Oracle table from a LEFT JOIN to just a JOIN, or else I also get the Oracle error.
    Here is the SQL (same as the previous post) with the 4 fields commented out, and the modified JOIN. Maybe that will give someone an idea, because it has me puzzled...
    SELECT Inv.AreaNo, Inv.CatType, Inv.CatNo, Inv.ItemNo, Inv.NumAvail, Inv.NumTotal, Inv.Active,
    IO.AID, IO.NumOut, IO.DateOut, IO.WorkerOut, IO.NumIn, IO.DateIn, IO.WorkerIn,
    OG.LASTNAME, OG.FIRSTNAME, OG.MIDDLENAME
    --, CC.CatID, CC.CatName, CC.BinItem, CC.Active
    FROM ItemInventory AS Inv
    LEFT JOIN CatCodes AS CC ON Inv.AreaNo = CC.AreaNo AND Inv.CatType = CC.CatType AND Inv.CatNo = CC.CatNo
    LEFT JOIN ItemHistory AS IO ON Inv.AreaNo = IO.AreaNo AND Inv.CatType = IO.CatType AND Inv.CatNo = IO.CatNo AND
    Inv.ItemNo = IO.ItemNo
    JOIN OGL..D.LE AS OG ON AID = OG.PK
    WHERE Inv.AreaNo = 0 AND Inv.CatType = 0

  • Tools for migrating data (documents) from MS SQL to Oracle

    Hi,
    Please let me know if there any tools available for migrating documents from one database like MS SQL to Oracle. Currently our documents are stored in MS SQL and we are planning to implement KM for document management with Oracle as the database.
    Regards,
    Suresh

    The old manual style still works - create the scripts for the migration objects, then use search & replace to rename the schema for all affected objects and finally run the SQL script to create them in the Oracle database.
    - Klaus

  • Migrate Data only from MS SQL to existing tables in Oracle

    Hi,
    I just downloaded Sql developer and I just want to copy data from sql server tables to oracle. I already have existing tables in Oracle and I just want to import the data there. How could I possible do that?
    Thanks in advance :)

    try this it must be helpful
    how can i connect sql server in sql developer?
    Regards

  • Migration of Oracle 8i PL/SQL to Oracle 9i PL/SQL

    Hi,
    Can anybody help me giving information about mandatory requirements to migrate from 8i to 9i. Also please let me know if any documents related to that for PL/SQL and PRO * C migration from 8i to 9i.
    Thanks with Regards,
    Guru

    Are there any issues that you are facing?
    If your software was well tuned and working fine under Oracle8i, you may just be able to port it right into Oracle9i without any issues.
    Ofcourse, If may also depend upon how the Oracle9i instance and database has been setup by the DBA.

  • Migrating to Oracle from SAP ECC6.0

    We are planning to "ditch" our SAP ECC 6.0 to a third party vendor who is using an Oracle Database system. I have been challenged with information gathering about how we will move our data out of SAP and into the oracle database. If I am in the wrong discussion please point me in the right direction.
    I was under the impression that Oracle might have a "tool" for this purpose.

    Hi,
    If I understand it correclty then SAP ECC6.0 is only an application. What is the underlying database that holds the actual data ?
    There is a migration workbench feature in SQL*Developer but it depends on the actual database holding the data.
    Have a look here -
    http://www.oracle.com/technetwork/database/migration/index-084442.html
    Regards,
    Mike

  • Regarding migration of oracle from 7.3.4 to 8.1.7

    Hi,
    We are migrating our product.
    Sun Solaris 2.6 to version 8
    Oralce database 7.3.4 to 8.1.7
    Pro * C 1.6 to 8.1.7
    PL/SQL 1.0 to 8.1.7
    Forms 3 to 6i.
    I want to know what are the problems we will face and what are all the existing bugs. Also i heard that future version of forms does not support character mode and the only choice is user exit. Is it so.
    I want to know what are all the problems i will be face while migrating OS,Database and application etc.
    Also if any body have any guide line or check list to migrate to 8.1.7 kindly mail it to me.
    I need it very urgently. If any body have any information regarding this then send a mail to me regarding it.
    Eagerly waiting for a reply mail which will help me a lot.
    Thanks and Regards,
    CMYogesh
    Mail Id : [email protected]

    I do that-full export,then full import.Then I found out that Designer Owner makes problem.
    I tried to import only Designer Owner, but it didn't work again!

  • Migration to oracle from 4D

    Hi,
    We have got a task to migrate 4D database to oracle, any idea how to go about this task.
    Thanks in advance.

    Hi,
    Do you get an error during the migration process for this procedure or if you get a migrated procedure can you post it here so we can compare it ?
    Regards,
    Mike

  • Migrating from MS SQL Server 2005 database to Oracle 10g

    Hello,
    I wanted the full procedure or steps to Migrate the MS SQL Server 2005 database to Oracle 10g. Is there a known procedure to do this or is there a tool which is used?
    I have not done migration of database from MS SQL Server to Oracle. Any help is appreciated. Thanks a lot for the time.
    Regards,
    RPS

    Wrong forum, go to the database forum!
    cu
    Andreas

  • How do I migrate views from MS SQL 2008 to Oracle 11g through SQL Developer

    Is there any way to migrate the views from MS SQL 2008 to Oracle 11g through SQL Developer? Please give me some detail steps. Thanks for your help.
    Kevin

    Hi Kevin,
    user13531850 wrote:
    Hi Turloch,
    When I use migrate to oracle, I got a problem, the migrate tool create a new schema for me in my case (AZTECA_KSMMS), it migrates all the stuffs under that schema (AZTECA_KSMMS). However my application need the all the Oracle data under schema AZTECA instead of AZTECA_KSMMS. Is there any way to specify specific schema (AZTECA) for target oracle database? Schema remapping is available:
    First Capture (separately) then during right click convert on the captured model there is a Specify the conversion options with a Object Naming tab where the schema (and other) name changes are editable.
    I have not used this recently.
    Also during the migration process, when I choose repository, there is a check box for truncate to reset repository to empty state, Do I need to check that truncate Check Box so the repository will be cleared from last migration?The repository can hold multple migration attempts. Check truncate to get rid of previous attempts information. This cleans up the repository - not the destination database.
    There are also online database and offline database options during the migration process, what are the difference between these two choices? After I migrated to Oracle, all my views has a red cross icon next to it. Does that mean the view migration is failed or not? Please give me your comments. Thanks for your help.offline: for big (amount of data) databases with simple data types,
    uses bcp + files + scripts + sqlldr.
    online: for small (amount of data) databases (easier),
    uses (Java) jdbc.
    The view is likely to be broken - recompiling it may help.
    The Oracle schema is created using a .sql file - see under generated in the directory you gave originally in the wizard. There is a .out file that contains the result of running this script including any errors. During conversion there are also likely to be warnings displayed on the UI.
    There may be a single issue that is causing multiple issues - if viewa depends on functionb, and functionb is broken, viewa will also fail.
    >
    Kevin-Turloch
    SQLDeveloper Team

  • DB Migration from MS SQL Server 2005 to Oracle 9i

    Hi Guys
    I want to migrate the data from Microsoft SQL Server 2005 to Oracle 9i.
    Could ou please suggest me the how to proceed.
    I can simply extract the das in CSV format as their are Foreign key , Primary key concept is there. So what will be the best way to proceed ....
    regards
    Macky

    Macky,
    In the coming months we will add support for SQL Server 2005 to the Oracle Migration Workbench. See our statement of direction on OTN for more details.
    If you have extracted the data into a csv file format, you could construct a SQL Loader control file to load this data, assuming you have already created the table on the Oracle side.
    Donal

  • Migrate tables from Ms SQL Server 20005 to Oracle 10g

    Hi all,
    I am trying to migrate 10 table from Ms SQL Server 2005 to Oracle 10g. I started creating a SSIS package to transfer them but it always fail when it tries to create the tables.
    Questions:
    - Is there any other way to import Ms SQL Server 2005 tables to Oracle
    - also I need to create a scirp that will update these tables periodically
    any ideas?
    Thanks

    YingKuan is right. jsut to expound a little further. This will also allow you to have have scripts which you can run again and again or even schedule them regularly too.
    B

  • Data migrated from MS SQL Server 2k to Oracle8i is not the same :(

    I'm trying to help a customer here who is trying to migrate a
    table from MS SQL Server 2000 with column WORD of type varchar
    (100) to Oracle8i (8.1.7.2) using Oracle Migration Workbench
    1.4.0.1 using MS SQL Server 2000 plugin. That column has unique
    values and has a primary key enabled on it. When migrated, the
    table on Oracle will have duplicate and incorrect data as well
    as ORA-2437: cannot validate (JAVAFARM.PK_IDX_WORD) - primary
    key violated.
    The data on both tables look like this :
    ss2k value oracle value
    ========== ============
    € ┐
    … ┐
    ’ ┐
    – ┐
    ƒ ┐
    Y= ┐
    4 ┐
    –0 ┐
    — ┐
    & ┐
    ‘ ┐
    Any idea what could be wrong or how to fix such thing?
    Thanks :)
    Fawaz.

    otn.oracle.com -> technologies -> Migration Workbench ->
    Oracle Migration Workbench Release 1.4.1.0.0 for Windows (yes
    even for 14101 beta) -> Agree to export/license conditions ->
    enter email or ignore -> Scroll down page to beta versions ->
    download omwb14101.exe (or download it piece by piece) and
    sqlserver2000.exe
    Regards,
    Jim.

  • Translate Stored Procedure from MS SQL Server to ORACLE 9i

    Hi...
    I work usually with MS SQL Server, and now I need to migrate an application from MS SQL Server to ORACLE 9i. I think to preserve most of User Interface made actually in MS Visual Basic .NET 2003 and change or "translate" all the MS SQL Server stored procedures to ORACLE 9i(most of business logic was code in Stored Procedures). So I need an advise of how to do that, if there are a tool for migration (tables, PK, FK, Rules, Defaults...etc) and, if possible, a procedure or tips for translate the stored procedures.
    Thanks in advance....
    Eusebio M

    Here's some links:
    Oracle Migration Workbench:
    http://www.oracle.com/technology/tech/migration/workbench/index.html
    Forums for Migration:
    http://forums.oracle.com/forums/forum.jspa?forumID=183
    Database and Application Migrations
    Good luck!
    Christian

Maybe you are looking for

  • How to return current value in iterator

    hi i have the following code when i iterator am always geting the same value,it display first value from the lov which is from the previous page.this is how am displaying the value i select value from lov and navigate to next page when am in the next

  • SQL Query converted to PL/SQL?

    I am trying to get my sql query here (which works) converted over to a pl/sql function so I can use an IF / THEN statement to determine whether my 2nd search field has been submitted with something in it. My current query: select      comm_Devices.ID

  • Path Names Video and Searchpaths

    Hi Guys, #I wonder if someone can help me i am really baffled why a application i have been working on for ages and was working fine has chosen now to change how it operates. The application has had no problems in the past with locating video files s

  • Need a refund on a app

    A game was deleted on my ipad.....i need a refund on fairway solt...game from (big fish games) i was charge .99cent on the fair and $2.99 for the HD and i all ready paid for the 2.99 HD......please refund me

  • Migrate the complete solution along with data from BW 2.x to BW 7.x

    Dear Experts, There is a scenario in which SAP BW 2.0 have been upgraded to 7.0 version,  while the BW flow  and the custom models  that exists are still in 2.X version We acquired separate SAP BW 7.4 powered by Hana ,  We would like to migrate the o