How to migrate MS Access table to Oracle 8i

I need to migrate MS Access v 97 tables to Oracle 8i and save as Oracle tables.
Could you tell me in detail how to do it.
Thanks a lot
Zixing

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Shahbaz Rasheed ([email protected]):
Originally posted by Oracle Migration Workbench Team:[b]Use the Oracle Migration Workbench Access plug-in. This will automate the process for you. The plug-in is available for download from this site.<HR></BLOCKQUOTE>
Personal Oracle8 has Oracle MS Access Migration utility. You can migrate your data from Access to Oracle. If you still unable to migrate your data please email me at [email protected] I'll send you step-by-step for Migration document
Regards
Shahbaz
null

Similar Messages

  • Migrated MS-Access table  To Oracle

    Hi All,
    I have 5 table with 1000 rows in MS-Access, i want to migrate the data to otacle 9i in windows XP.
    kindly any one tell me, how to convert the table to flat file and how to import the flat file to oracle. OR anyother way to migrated the tables??
    Regrads
    S.senthil kumar

    You can save those tables as CSV. If it is not possible from Access (Generally from File menu then export) copy the rows, paste in excel and then save CSV.
    After that you have to use SQL* Loader to load them.
    One example
    Re: Urgent -----SQL * Loader Control File
    Case Studies of SQL Loader
    http://download-uk.oracle.com/docs/cd/B10501_01/server.920/a96652/ch10.htm#1656

  • How to use a Sybase table in Oracle SQL statement?

    How to use a Sybase table in Oracle SQL statement?
    Sybase version : 11.9.2.4
    Oracle version : 10.2.05
    Thanks.

    user12088323 wrote:
    How to use a Sybase table in Oracle SQL statement?
    Sybase version : 11.9.2.4
    Oracle version : 10.2.05
    Thanks.Any Oracle client connected to the Oracle database can access Sybase data through the <font style="background-color: #FFFFCC">Database Gateway for Sybase</font> (it requires an additional license) or the <font style="background-color: #FFFFCC">Database gateway for ODBC</font> (it's free).
    The Oracle client and the Oracle database can reside on different machines. The gateway accepts connections only from the Oracle database.
    A connection to the gateway is established through a database link when it is first used in an Oracle session. In this context, a connection refers to the connection between the Oracle database and the gateway. The connection remains established until the Oracle session ends. Another session or user can access the same database link and get a distinct connection to the gateway and Sybase database.
    Database links are active for the duration of a gateway session. If you want to close a database link during a session, you can do so with the ALTER SESSION statement.
    To access the Sybase server, you must create a <font style="background-color: #FFFFCC">database link</font>. A public database link is the most common of database links.
    SQL> CREATE PUBLIC DATABASE LINK dblink CONNECT TO
    2  "user" IDENTIFIED BY "password" USING 'tns_name_entry';
    --dblink is the complete database link name.
    --tns_name_entry specifies the Oracle Net connect descriptor specified in the tnsnames.ora file that identifies the gatewayAfter the database link is created you can verify the connection to the Sybase database, as follows:
    SQL> SELECT * FROM DUAL@dblink;
    Configuring Oracle Database Gateway for Sybase
    <font style="background-color: #FFFFCC">{message:id=10649126}</font>

  • Update Yes/No field in access table through oracle procedure

    Hi,
    How to update Yes/No field in access table through oracle procedure. all other fields like AutoNumber, Text I can update it. Yes/No field how to update? Please, any one can help me?
    Thanks and Regards,
    Sudha.

    Sudha Teki wrote:
    select "fldPost" from tblPHd@ODBCLNKNot quite sure what you mean, but the way you select the column would indicate a case sensitive column name
    Look at this example
    SQL> create table t
      2  ("this" varchar2(10))
      3  /
    Table created.
    SQL> insert into t values ('hello')
      2  /
    1 row created.
    SQL> select *
      2    from t
      3  /
    this
    hello
    SQL> select this
      2    from t
      3  /
    select this
    ERROR at line 1:
    ORA-00904: "THIS": invalid identifier
    SQL> select "this"
      2    from t
      3  /
    this
    helloIs your column name also case sensitive?

  • How to import Ms Access database in Oracle 11g

    how to import Ms Access database in Oracle 11g

    google the subj. search terms reveals a tutorial ...
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/db/hol08/sqldev_migration/msaccess/migrate_microsoft_access_otn.htm

  • Copy access tables to oracle

    Hi, I want to copy access tables to oracle database.
    Till now I have opened the connections to both of them.
    Can anyone explain me what are the next steps?
    Here is the code that I wrote till now:
    String connString = "User Id=******* ;Password=******* ;Data Source=******* ";
    String connString2= " Provider=Microsoft.Jet.OLEDB.4.0;Data Source=E:\\temp.mdb" ;
    OracleConnection oraConnection = new OracleConnection(connString);
    DbConnection accessConnection = new OleDbConnection(connString2);
    // openning the oracle connection
    try
    oraConnection.Open();
    Console.WriteLine("\nHello, Oracle Here!\n");
    Console.WriteLine("Connection String: ");
    Console.WriteLine(oraConnection.ConnectionString.ToString() + "\n");
    Console.WriteLine("Current Connection State: ");
    Console.WriteLine(oraConnection.State.ToString() + "\n");
    Console.WriteLine("Oracle Database Server Version: ");
    Console.WriteLine(oraConnection.ServerVersion.ToString());
    catch (Exception ex)
    Console.WriteLine("Error occured: " + ex.Message);
    finally
    if (oraConnection.State == System.Data.ConnectionState.Open)
    oraConnection.Close();
    //openning the access connection
    try
    accessConnection.Open();
    Console.WriteLine("\nHello, Access Here!\n");
    Console.WriteLine("Connection String: ");
    Console.WriteLine(accessConnection.ConnectionString.ToString() + "\n");
    Console.WriteLine("Current Connection State: ");
    Console.WriteLine(accessConnection.State.ToString() + "\n");
    Console.WriteLine("Microsoft Access Version: ");
    Console.WriteLine(accessConnection.ServerVersion.ToString());
    catch (DbException e)
    Console.WriteLine( "Unable to open database:" + e.Message);
    throw;
    }

    Hi Peter,
    Thanks for the feedback.
    I have replicated the issue also.
    Basically Dutch is not a supported language in SQL Developer.
    SQL Developer fell back on English as the default , but obviously this component, the Apply Button, has an issue.
    Your workaround is correct as it specifically tells SQL Developer to run English rather than waiting for it to fall back to the default language.
    Thanks,
    Dermot.
    SQL Developer Team.

  • How to Migrate Postgres DB Schema to Oracle 11 g???

    hi,
    how to Migrate Postgres DB Schema to Oracle 11 g??? Any idea or tool that you want to refer for migration of postgres Schema to Oracle 11g .
    Regards,

    Pl see possible solutions here - http://www.oracle.com/technetwork/database/migration/index-084442.html
    Pl also see previous discussions on this topic
    https://forums.oracle.com/forums/search.jspa?threadID=&q=postgres+AND+oracle&objID=c18&dateRange=all&userID=&numResults=15&rankBy=10001
    HTH
    Srini

  • Data in access tables to oracle tables

    Hi
    I want to load data from MS Access tables to oracle tables .
    Can any on help me to in this
    regards
    rajesh

    If you only want to export a few tables from Access to Oracle once, I would suggest to use the export functionality of MS Access. To do this you need to install an Oracle Client and further use ODBC to export the data/tables to your Oracle database.
    To avoid failures concerning the datatype transformation, I suggest to use the Oracle ODBC driver.

  • Migration of Microsoft Access Table in Oracle XE

    Hi all,
    i've got a MS Access DB with a table with over 50k rows in it. I need to transfer the data to my Oracle XE. I tried to use the "Quick Migration" option of SQL Developer but that won't work. I also extracted the data of the MS Access table into an insert script. Unfortunately the insert script is too big for SQL Developer, I just can't believe it.....
    Do you know how to solve this problem?
    Thanks in advance!
    Greetz
    keXx

    No prob, should be a sqlplus program button under the Oracle group, or do the Start/Run ... and type in cmd (windows) and sqlplus in the command box.
    May have to poke around a bit find out which database user to sign in as, best not to use sys or system users for regular data/tables.

  • Weird tables are added in the db after migrating an Access db to Oracle 0816

    Hi,
    The migration workbench has been giving me headache recently. I
    was trying to migrate a small Access 97 db to Oracle081600. It
    used to work fine. But one day, it began to give me problems.
    Each time after I migrated an Access97 db to Oracle, the
    database in Oracle included lots of tables which I don't know
    where they come from (such as ACC_COLUMN,
    ACC_DATABASE,...MTG_COL_DEP_CHG...OM_ALL_INDEXES_INFO...SS7_SYSCO
    LUMNS...etc). And I just could not find the tables that I wanted
    in the migrated oracle db. Is there anyone who knows what's
    wrong? I really need someone's help on this problem.
    The oracle I installed is Oracle0816, running on Windows2000.
    Thank you.
    Li yang

    I am having the same problem. I had never used the tool before
    so i thought it was normal. If you have figured it out let me
    know. my boss wants to know if we can use this tool or should
    pursue other ways of migrating.
    amie

  • How to migrate SQL serveer table-valued functions into Oracle 10g

    hi ,
    i'm trying to migrate from SQL server to Oracle. There are some Table_valued functions ( Function that returns table). while migrating using SQL Developer it uses cursor for every table query. is this is the only solution to migrate functions returning table? This tables contains more than LAKH of records? so if there any other solution on this please reply. the sample code is bellow.
    CREATE function FU_AIG_S_GET_LOG
    returns TABLE
    as
    RETURN     
    SELECT U_AIG.T_AIG_LOG.AIG_LOG_NB_IDLOG,
    U_AIG.T_AIG_LOG.AIG_LOG_NB_EVTSUIVI,
    U_AIG.T_AIG_LOG.AIG_LOG_NB_CODELOG,
    U_AIG.T_AIG_LOG.AIG_LOG_DT_CREATION,
    U_AIG.T_AIG_LOG.AIG_LOG_CL_XMLEVT,
    U_AIG.T_AIG_TYPELOG.AIG_TYPELOG_VC_NOMLOG
    FROM U_AIG.T_AIG_LOG INNER JOIN U_AIG.T_AIG_TYPELOG
              ON U_AIG.T_AIG_LOG.AIG_LOG_NB_CODELOG =
    U_AIG.T_AIG_TYPELOG.AIG_TYPELOG_NB_CODELOG
    WHERE AIG_LOG_NB_LU = 0;
    thanks
    sush
    Message was edited by:
    user610355
    Message was edited by:
    user610355

    I don't think there's good work around over that. Mysql .sql file syntax is a little different from Oracle. Especially the DDLs.
    Unless you are willing to blindly run the .sql file and fix the one failed manually.

  • How to migrate an ACCESS 2000 Database to Oracle ?

    Hi,
    I need to migrate an ACCESS 2000 Database to Oracle. Is there any tool to help me in this work ?
    Regards.
    Pascal

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Pascal:
    Hi,
    I need to migrate an ACCESS 2000 Database to Oracle. Is there any tool to help me in this work ?
    Regards.
    Pascal<HR></BLOCKQUOTE>
    The Oracle Migration Workbench version 1.4.1.0.0(available from OTN at http://otn.oracle.com/tech/migration/workbench/content.html) will migrate an ACCESS 2000 database.
    null

  • Quick Migration from Access db to Oracle using Sql Developer

    Hey
    I created a connection to an Access DB and then did a quick migration of the tables and data into my Oracle schema. Great!
    Now if I add a new table to my Access DB, how do I get this new access table into my Oracle schema without having to do the migration all over again
    Thanks

    I don't think so. It is intended for one-off migrations after all.
    You can probably migrate a single table by going through the longer migration process and excluding the ones you have already done.

  • How to copy sql database tables to oracle database

    hii everybody,
    i have 50 sql databse tables and i want to copy these tables into oracle database,how can i achive this?.Any help highly appreciated.
    thanks.

    Hi,
    You haven't said if this is a one-off copy of the data or if it is comething you want to do on a regular basis.
    If it is a one-off move of the data then you could use the SQL*Developer migration workbench, see here for more details -
    SQL*Developer main page -
    http://www.oracle.com/technetwork/developer-tools/sql-developer/overview/index.html
    Database Migration technology -
    http://www.oracle.com/technetwork/database/migration/index-084442.html
    If it is something you want to do on a regular basis then you could use a gateway to make a connection between SQL*Server and Oracle and then copy or select from the remote tables.
    The following page has more detail -
    http://www.oracle.com/technetwork/database/gateways/index.html
    and this note if you have access to My Oracle Support -
    Master Note for Oracle Gateway Products (Doc ID 1083703.1)
    You could also use GoldenGate which allows real-time replication between Oracle and non-Oracle databases -
    http://www.oracle.com/technetwork/middleware/goldengate/overview/index.html
    Regards,
    Mike

  • Migrating MS ACCESS FORMS TO Oracle FORMS9i

    Hello ,
    can someone tell me, how i can migrate a whole MS ACCESS 2000 mdb (with forms) to Oracle.
    I think i have first migrate the Access DB with the OMWB to Oracle and in the next Step to convert the VBA Code to JAVA or Forms9i.
    Is there a tool available for Migrating VBA code ????

    You have two routes you can take, migrate to Java or Forms9i. We have a partner called FReesoft who specialise in these migrations. Contact Donat Vass at [email protected]

Maybe you are looking for

  • Find Table Field  for  Q0045-OPELO in HR Payroll

    Dear All,   I have a requirement to find the Loan Balance as on date from Infotype 0045. In the screen field it show that data is  linked to  this table field...   Q0045-OPELO . Now My Problem is how To find the  Database table Name where exactlly th

  • There is no item number field available in non catalog request screen

    Hi, I need help in understanding how the Contract purchase agreement works with i-procurement. 1. created contract purchase agreement 2. Setup the item 3. Setup the price list for the item 4. Setup the ASL for the item and referenced the CPA number i

  • AVK 1.4.2 and EJB 1.1

    We get lots of EJB failures with AVK relating to the EJB 2.1 specification. However, the EJBs that we are testing are 1.1 EJBs. AVK seems to assume that they are 2.1 EJBs. Each module has its own EJB 1.1 ejb-jar.xml descriptor. How can we get AVK to

  • HT5654 Where is the help bar?

    I have a new iPhone 5s coming tomorrow, i am trying to update my itunes so that i can use it to activate my phone. How can i do this?

  • How to choose 'Source' when creating requisition in iProcurement?

    Hi, When creating requisition in PO module, you can choose 'Source' to be either 'Inventory' or 'Supplier'. But in iProcurement, how can I choose 'Source'? Thanks Leo