To Convert Data From Access To Oracle

Hi Allz,
Is there any tool to convert mdb (microsoft data base) data to oracle 9i , because in oracle 8 there is Microsft Access Tool for Oracle, through that tool we can covert mdb data to oracle.How can we convert the same data in oracle 9i.
Thanks

You could use Oracles Migration Workbench
http://www.oracle.com/technology/tech/migration/index.html

Similar Messages

  • How can i convert data from DBF to oracle database 10g?

    Sir,
    How can i convert data from DBF to oracle database 10g?

    I assume you at least know how to dump the contents of foxpro dbf file into CSV format.
    Regarding SQL*Loader, hope this demo makes it a bit clear to you...
    http://www.princeton.edu/~storacle/sqlloader_demo.shtml
    I agree that it is an old web page (references Oracle 8.0.5) but basics remain the same.
    If it is still unclear to you after referring above link, then get an Oracle consultant.

  • Data trouble when exporting data from Access to Oracle

    Hey,
    I have several tables in Access in which I am exporting to Oracle. The exporting works fine, but some of the ' are getting converted to ? during the export, so any fields that have words like government's or women's are now spelled government?s and women?s. Any ideas on why this would be happening and on how to fix it?
    Thanks

    What is your database character set in Oracle? What is your NLS_LANG parameter set to on the client?
    I'm guessing that your data contains some of Microsoft's special characters (things like curly quotes) rather than the standard ASCII apostrophe. Both the database character set and the client NLS_LANG would have to be configured to a character set that supports those characters in order for the data to be transferred correctly.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Data from access to oracle 8.1.6

    I keep getting the following when trying to migrate a table data.
    EXCEPTION : LoadTableData.run() : [Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path. Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.
    Manual data transfer is fine.
    regards
    Michael

    Hi Michael,
    Can yo please send copy of your error.log file to [email protected] It is located in %ORACLE_HOME%\omwb\log.
    Regards
    John

  • Migration Error from Access to Oracle through SQL Developer.

    Hi,
    Actually I am trying to migrate data from MS Access 2002 to Oracle 9i database through the SQL Developer. But Whenever I go to Capture Database from Access it will show me an error.... Invalid procedure Call and then it shows an error message... >>>>>>
    ShowSplashScreen("_OracleSplashScreen",3)
    after that i wont be able to do this task anymore..... So please help me get out of it... How Cam I Maigrate data from Access to Oracle 9i...
    Is any other tool i use or you can help me for this tool to migrate date...
    Please tell me..
    If yu can send me a mail then mail me on [email protected]
    regards,
    Vishal

    Hi Vishal,
    I have responded to your related thread on the Migration Workbench forum - Migration Error from Access to Oracle through SQL Developer.
    Regards,
    Hilary

  • I want to convert date from Microsoft Access to Oracle.

    I want to convert date from Microsoft Access to Oracle.
    My Oracel date format is 21-Jul-2004 02:24:09 AM
    I use sqlldr in Oracle 9i Database and I
    write control file
    load data
    infile 'test.txt'
    into table test
    fields terminated by "," optionally enclosed by '"'
    trailing nullcols
    name,
    birthday
    data file 'test.txt' for input
    "dao","21-Jul-2004 02:24:09 AM"
    why did error? ORA-01843: not a valid month
    Thank.

    replace birthday with
    birthday "to_date(:birthday, 'DD-Mon-YYYY HH:MI:SS AM', 'NLS_LANGUAGE=''american''')"Of course, if your monthes are in German, then set the language to german (JUL=JUL but DEZ<>DEC)
    Regards
    Laurent

  • How to I convert data from oracle database into excel sheet

    how to I convert data from oracle database into excel sheet.
    I need to import columns and there datas from oracle database to microsoft excel sheet.
    Please let me know the different ways for doing this.
    Thanks.

    asktom.oracle.com has an excellent article on writing a PL/SQL procedure that dumps data to an Excel spreadsheet-- search for 'Excel' and it'll come up.
    You can also use your favorite connection protocol (ODBC, OLE DB, etc) to connect from Excel to Oracle and pull the data out that way.
    Justin

  • Upload data from Access Database to Oracle Database In oracle 8i

    hi everybody
    i am trying upload data from Access database to Oracle Database
    i have TT(F1,F2,F3) table in Access Databsse
    and emp(ename,ecode,sal) in oracle Database
    db_ac is my datasource name
    when i connect to Access Database thru this command this show following error
    SQL> connect a/a@odbc:db_ac;
    ORA-00022: invalid session id; access denied
    ORA-00022: invalid session id; access denied
    ORA-00022: invalid session id; access denied
    Error accessing PRODUCT_USER_PROFILE
    Warning: Product user profile information not loaded!
    You may need to run PUPBLD.SQL as SYSTEM
    Server not available or version too low for this feature
    ORA-00022: invalid session id; access denied
    Connected.
    when i am trying copy data as this command it show error and data not copied.
    SQL> COPY FROM A/A@ODBC:DB_AC TO test/test@ora INSERT EMP USING SELECT F1,F2,F3 FROM TT;
    Array fetch/bind size is 15. (arraysize is 15)
    Will commit when done. (copycommit is 0)
    Maximum long size is 80. (long is 80)
    ORA-00022: invalid session id; access denied
    ERROR:
    OCA-00022: general OCA error
    can help me .
    with thanx

    Hi there,<br>
    <br>
    Please kindly use instead the Database Forum at:-<br>
    General Database Discussions<br>
    <br>
    ... to place your question as this is for the Oracle Portal product Export / Import functionality.<br>
    <br>
    <br>
    Kind regards,<br>
    Pedro.

  • Data from Excel to Oracle DB

    Hi,
    I can upload data from excel to access having created stored procedure on access.
    I do the upload using my vb code.
    How can I upload data from excel to oracle db? could i use the same technique as above? only problem is im not sure if that vb code will work with oracle?
    has anyone done this before? anyone have example code?
    kindly assist me here
    thanks

    The easiest way to do this is to use a Oracle ODBC connection which can be found on OTN. You do not need a stored proc.
    After installing Oracle ODBC on the machine where Excel and Access live, do the following.
    Note, you already have steps 1, 2 and 3. I list all the steps for others.
    1. Create your MS/Excel workbook
    2. Add data to it.
    3. Save it as "book1.xls".
    4. Open MS/Access
    5. Create new blank database, call it db1.
    6. Then from the file menu, get external data, import, make sure the file type is xls, select book1.xls.
    7. The wizard will walk you through the process of importing you Excel workbook into a new table.
    8. Save
    9. From the file menu select export table.
    10. Select ODBC at the bottom of the "Save as type list".
    11. Then (depending how you set up ODBC) select Machine Data Source.
    12 . Select your Oracle ODBC connection and press OK.
    You now have taken data from Excel to Access and placed it in the Oracle schema that was named when you setup your Oracle ODBC connection.
    BG...

  • Read data from an external Oracle-DB: Codepage problems

    Hi,
    I try to get data from an external Oracle-DB which runs under NLS_CHARACTER
    WE8ISO8859P1. In this DB are russian texte stored. If I read these texts via native-SQL I obviously get wrong characters. (e.g. Èíñòðóìåíòû äëÿ óãëîâîé øëèôîâàëüíîé ìàøèíû instead of &#1048;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099; &#1076;&#1083;&#1103; &#1091;&#1075;&#1083;&#1086;&#1074;&#1086;&#1081; &#1096;&#1083;&#1080;&#1092;&#1086;&#1074;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1084;&#1072;&#1096;&#1080;&#1085;&#1099;). If I save the text as a html file and then open it with IE. I can change the encoding and get the right view.
    Has anybody got an idea ? (Mabye I can read the data in a different codepage or maybe there is a possibility to convert the codepage in SAP after reading it from oracle)
    Thanks a lot !!!!

    The problem is solved.
    Many thanks !

  • Error in Transformation from Access to Oracle

    I am getting following error while fetching data from Access in Load data.
    java.lang.ClassCastException: java.lang.Integer cannot be cast to [B
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:7839)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:7555)
         at oracle.jdbc.driver.OraclePreparedStatement.setObject(OraclePreparedStatement.java:8028)
         at oracle.jdbc.driver.OraclePreparedStatementWrapper.setObject(OraclePreparedStatementWrapper.java:238)
         at com.sunopsis.sql.SnpsQuery.updateExecStatement(SnpsQuery.java:2027)
         at com.sunopsis.sql.SnpsQuery.addBatch(SnpsQuery.java:122)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.executeUpdate(SnpSessTaskSql.java:3034)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execCollOrders(SnpSessTaskSql.java:729)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java:2815)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java:2515)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatAttachedTasks(SnpSessStep.java:534)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java:449)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java:1954)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$2.doAction(StartSessRequestProcessor.java:322)
         at oracle.odi.core.persistence.dwgobject.DwgObjectTemplate.execute(DwgObjectTemplate.java:224)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.doProcessStartSessTask(StartSessRequestProcessor.java:246)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor.access$0(StartSessRequestProcessor.java:237)
         at oracle.odi.runtime.agent.processor.impl.StartSessRequestProcessor$StartSessTask.doExecute(StartSessRequestProcessor.java:794)
         at oracle.odi.runtime.agent.processor.task.AgentTask.execute(AgentTask.java:114)
         at oracle.odi.runtime.agent.support.DefaultAgentTaskExecutor$2.run(DefaultAgentTaskExecutor.java:82)
         at java.lang.Thread.run(Thread.java:662)
    Unable to understand Error.
    What this error is about and whoat would i have to Do to remove it ?
    Details:-
    LKM:- SQL to Oracle (Only this is refered in this step)
    IKM:- IKM SQL Incremet Update .(It would not be refered in this step)
    Edited by: MaheshGx on Jan 9, 2012 6:24 PM

    Posting Code:-
    Source Code:-
    select     
         MTP_CONVERSION."MTP#"     as C9_MTP_,
         MTP_CONVERSION."MTP#"     as C14_MTP_,
         MTP_CONVERSION."MTP#"     as C37_MTP_,
         MTP_CONVERSION."MTP#"     as C38_MTP_,
         TABLE_BCAT_SALES."Budg_Cat_Sales"     as C2_BUDG_CAT_SALES,
         TABLE_PATTERN."Pattern"     as C7_PATTERN,
         TABLE_BCAT_SALES."Budg_Cat_Sales"     as C11_BUDG_CAT_SALES,
         TABLE_SIZE."Size_Designation"     as C24_SIZE_DESIGNATION,
         TABLE_INFL_TYPE."Infl_Type_Abr"     as C26_INFL_TYPE_ABR,
         WARRANTY."MTP_Warr"     as C27_MTP_WARR,
         TABLE_CUSTOMER."Customer"     as C30_CUSTOMER,
         MTP_CONVERSION."Year"     as C31_YEAR,
         VEHICLE."Vehicle"     as C34_VEHICLE,
         MTP_CONVERSION.IPC     as C6_IPC,
         MTP_CONVERSION.IPC     as C8_IPC,
         TABLE_BCAT_SALES."Budg_Group_Sales"     as C12_BUDG_GROUP_SALES,
         TABLE_BCAT."Brand"     as C25_BRAND,
         TABLE_LOAD_CAT.PR     as C29_PR,
         MTP_CONVERSION.IPC     as C36_IPC,
         MTP_CONVERSION.IPC     as C41_IPC,
         MTP_CONVERSION.BPC     as C5_BPC,
         TABLE_SIZE."Width"     as C18_WIDTH,
         TABLE_SIZE."Width"     as C19_WIDTH,
         TABLE_SIZE."Width"     as C32_WIDTH,
         MTP_CONVERSION."LineUp_Ind"     as C1_LINEUP_IND,
         TABLE_SIZE."Series"     as C16_SERIES,
         TABLE_SIZE."Series"     as C17_SERIES,
         TABLE_CUSTOMER.OE     as C23_OE,
         TABLE_SIZE."Series"     as C33_SERIES,
         MTP_LINEUP."Load_Single"     as C13_LOAD_SINGLE,
         TABLE_SIZE."Rim"     as C28_RIM,
         MTP_CONVERSION."Product_Description"     as C10_PRODUCT_DESCRIPTION,
         MTP_LINEUP."Load_Dual"     as C15_LOAD_DUAL,
         MTP_CONVERSION."Product_Description"     as C20_PRODUCT_DESCRIPTION,
         MTP_LINEUP."Speed"     as C3_SPEED,
         TABLE_PATTERN."Winter"     as C21_WINTER
    from     ."MTP_Conversion" as MTP_CONVERSION, ."MTP_LineUp" as MTP_LINEUP, ."Vehicle" as VEHICLE, ."Warranty" as WARRANTY, ."Table_Pattern" as TABLE_PATTERN, ."Table_BCAT_Sales" as TABLE_BCAT_SALES, ."Table_Customer" as TABLE_CUSTOMER, ."Table_BCAT" as TABLE_BCAT, ."Table_Size" as TABLE_SIZE, ."Table_Infl_Type" as TABLE_INFL_TYPE, ."Table_Load_Cat" as TABLE_LOAD_CAT
    where     (1=1)
    And (MTP_LINEUP."Infl_Type_Code"=TABLE_INFL_TYPE."Infl_Type_Code")
    AND (MTP_LINEUP."Customer_Code"=TABLE_CUSTOMER."Customer_Code")
    AND (MTP_LINEUP."BCATS_Code"=TABLE_BCAT_SALES."BCATS_code")
    AND (MTP_CONVERSION."MTP#"=WARRANTY."MTP#")
    AND (MTP_LINEUP."Pattern_Code"=TABLE_PATTERN."Pattern_Code")
    AND (MTP_LINEUP."Load_Cat_Code"=TABLE_LOAD_CAT."Load_Cat_Code")
    AND (MTP_LINEUP."BCAT_Code"=TABLE_BCAT."BCAT_code")
    AND (MTP_CONVERSION."MTP#"=MTP_LINEUP."MTP#")
    AND (MTP_CONVERSION."MTP#"=VEHICLE."MTP#")
    AND (MTP_LINEUP."Size_Code"=TABLE_SIZE."Size_Code")
    Target Code:-
    insert into OMPODI.C$_0NEWBSMASTERTYRE
         C9_MTP_,
         C14_MTP_,
         C37_MTP_,
         C38_MTP_,
         C2_BUDG_CAT_SALES,
         C7_PATTERN,
         C11_BUDG_CAT_SALES,
         C24_SIZE_DESIGNATION,
         C26_INFL_TYPE_ABR,
         C27_MTP_WARR,
         C30_CUSTOMER,
         C31_YEAR,
         C34_VEHICLE,
         C6_IPC,
         C8_IPC,
         C12_BUDG_GROUP_SALES,
         C25_BRAND,
         C29_PR,
         C36_IPC,
         C41_IPC,
         C5_BPC,
         C18_WIDTH,
         C19_WIDTH,
         C32_WIDTH,
         C1_LINEUP_IND,
         C16_SERIES,
         C17_SERIES,
         C23_OE,
         C33_SERIES,
         C13_LOAD_SINGLE,
         C28_RIM,
         C10_PRODUCT_DESCRIPTION,
         C15_LOAD_DUAL,
         C20_PRODUCT_DESCRIPTION,
         C3_SPEED,
         C21_WINTER
    values
         :C9_MTP_,
         :C14_MTP_,
         :C37_MTP_,
         :C38_MTP_,
         :C2_BUDG_CAT_SALES,
         :C7_PATTERN,
         :C11_BUDG_CAT_SALES,
         :C24_SIZE_DESIGNATION,
         :C26_INFL_TYPE_ABR,
         :C27_MTP_WARR,
         :C30_CUSTOMER,
         :C31_YEAR,
         :C34_VEHICLE,
         :C6_IPC,
         :C8_IPC,
         :C12_BUDG_GROUP_SALES,
         :C25_BRAND,
         :C29_PR,
         :C36_IPC,
         :C41_IPC,
         :C5_BPC,
         :C18_WIDTH,
         :C19_WIDTH,
         :C32_WIDTH,
         :C1_LINEUP_IND,
         :C16_SERIES,
         :C17_SERIES,
         :C23_OE,
         :C33_SERIES,
         :C13_LOAD_SINGLE,
         :C28_RIM,
         :C10_PRODUCT_DESCRIPTION,
         :C15_LOAD_DUAL,
         :C20_PRODUCT_DESCRIPTION,
         :C3_SPEED,
         :C21_WINTER
    )

  • Importing data from Access into InDesign...

    Hi
    I need to create 200 A6 sized profile cards.  Each card must contain a person's name, job role, three key things they are currently working on and a full body photograph.
    All the data is currently being collated in Microsoft Access (not currently sure of version). If Access is a problem I can convert to Excel. I am using InDesign CS6.
    My question is - is there an easy way to mass import this data onto each profile card?
    Many thanks in advance, I appreciate any suggestions :-) 
    Kim :-)

    Another approach is export data from Access to xml-file. Create a template with placeholders in InDesign (in your case 5 text frames and a graphic frame). Then you can import the xml-file and InDesign will automatically create all the profile cards.

  • Getting arabic data from Access

    Originally i'm importing data from a word table containing arabic data to oracle database
    i thougt about copying the dat ato excel then importing them to access
    i did that successfully
    now i want to generate insert statements dynamiclly touse them within oracle i did that but the problem when reading the columns containing arabic data from access i get exclaimation marks
    i tried priniting the data to the console or writing them to a file the arabic data didn't apear i tried creating new strings using arabic character encoding cp1256 win-1256 and isoxzxzx it didn't work
    anyone have suggestions?

    hi, did u solve the problem please tell me if u did, im having the same problem.im trying to get arabic words from MS Access database and send them over a network
    Shuqman

  • Extraction of Attendence Punch machine data (MS Access) into Oracle

    Hi all,
    i want to link the our employees timesheet with the Punch machine so for that purpose i nedd to load data from MS ACCESS into oracle8i on daily basis can anyone guide me regarding this. how to extract the data from MS ACCESS daily ??
    Regards
    Rehman

    I do not use or support ACCESS however I know at lot of places have ACCESS front-end's to Oracle so it ought to be possible, if the data does not need a lot of reformatting, to insert the data into Oracle from Access.
    You would also have the option of extracting the data into delimited data files and loading those into Oracle via sqlldr.
    At least one application we have collects data from ACCESS into SQL Server and then sends data to Oracle via a Linked Database.
    The direct insert from ACCESS to Oracle seems best but if you also need data from elsewhere or have extensive reformatting (perhaps normalization) to perform also one of the other techniques may work better.
    HTH -- Mark D Powell --

  • Migrating from Access to Oracle

    Hello......
    I am trying to migrate a table from Access to Oracle. It contains approx 850,000 rows, and I tried using SQL Server's DTS Import/Export tool to perform the migration. However, this export/import has been running for almost 48 hours (crazy, huh?!), and I'm only at 350,000 records loaded. This tool is obviously not sufficient for a migration of this size.
    Can anyone suggest a better way for me to go about this?
    Thanks,
    -Christine

    Hi,
    If you have DDL structures in Oracle, then you can save the access data as .csv file format. you using any opensource tool you can migrate it.
    Or you can go for sql loader also.
    Cheers,
    Moorthy.GS

Maybe you are looking for

  • How can I use local variable in LabVIEW-Action?

    Hi All! There is local variable (for example "MyVariable") in local scope of project. There is Action-step, created by LabVIEW. One of input terminals step is "Sequence Context". How can I access to MyVariable by Sequence Context? Unbundle? It does't

  • Photoshop CS3 freezes on edit preferences performance

    I know this is the Lightroom forum, but I could not get any help on the photoshop windows forum, and there are a ton of experts willing to help here, so I hope you will bear with me - thanks! I have been having performance problems with photoshop CS3

  • Pie chart from Largest slice of another pie chart.

    Greetings! I'm trying to come up with a method which will allow me to create a pie chart of the subgroups from the largest slice of an existing pie chart. The "parent" pie chart will change depending upon the parameters given in the report. declare @

  • Skip Selection screen

    Hi Friends, I need to run a report and before the report is generated i need to run a Extract program. So the screen sequence is goe like this. 1. The initial selection screen is the selection criteria for the report. 2. Once the criteria is given an

  • When i check my eligibility on verizons page its good but apple says I cant  ???

    When I check my eligibility to upgrade to iphone 4 it on verizons webpage is says that im able, but on apples webpage it says (Your current price plan is not compatible with the iPhone. You can proceed by activating a new Verizon Wireless account now