Ms access db to oracle 10g

Hello I have scouted messages... but unable to find solution....
simply put can/how do I move an access db into oracle without
'rollingmy own code..' or......
THx regards 'learningCurv' lol

If this is a one-time event, and assuming we're talking primarily data, not all the front-end things that can be defined in Access, you can try the Oracle Migration Workbench.
Justin
Distributed Database Consulting, Inc.
http://www.ddbcinc.com/askDDBC

Similar Messages

  • Oracle Streams b/w MS-Access 2007 and Oracle 10g.

    Can we set up Oracle Streams between MS-Access 2007 and Oracle 10g? Ms-Access as source and Oracle 10g as destination database. If so, can any one please give me little heads up with supported doc's or any source of info.

    Help Help....!!!

  • Best way to migrate Access data into Oracle 10g?

    what's the best and easiest way to migrate MS Access database into Oracle10g?
    Thanks

    you can check out this thread ms access db to oracle 10g
    <p>also as neil mentioned you need an ODBC to established a database connection between ms access and oracle. be sure that the tables are existing in oracle so you move the data from ms access to oracle tables.</p>

  • Error accessing table on Oracle 10g Express Edition

    I am unable to access tables uploaded after Oracle 10G express edition installation.
    The error message is ""ORA-00942: table or view does not exist"
    Meanwhile, the table is in existence when viewed via object browser.
    Pls can anybody help out.

    Hi;
    Which user you try to query? Table under which schema?
    You can query as follows:
    SELECT
    TABLE_NAME
    FROM
    ALL_TABLES
    WHERE
    TABLE_NAME LIKE '%xxx%'
    ORDER
    BY TABLE_NAME;
    Regard
    Helios

  • Accessing prblem in oracle 10g

    i have been using oracle 10g for 2 months. bt now i can not access in though i m giving correct user name and password.
    it gives a error like this : ORA 01033 oracle initialization or shutdown in progress.
    how can i solve this.

    782818 wrote:
    i have been using oracle 10g for 2 months. bt now i can not access in though i m giving correct user name and password.
    it gives a error like this : ORA 01033 oracle initialization or shutdown in progress.
    how can i solve this.Try following and post result there.
    export ORACLE_SID=<YOURSID>(in windows set ORACLE_SID=<YOURSID>)
    sqlplus "/as sysdba"
    shutdown immediate;
    startup;

  • How to access MYSQL from Oracle 10g and vice versa

    I will like to know how do I create a database link between Oracle 10g and MYSQL database on windows.  I have been saddled with responsibility of ensuring the communications between the 2 databases and I have searched everywhere on google, I could not find anywhere where this is explain explicitly and made work.
    THank you

    In general Oracle offers 2 different products to connect from an Oracle database to a MS SQL Server. The first product is for free and it is called
    As DG4ODBC is a generic connectivity based on ODBC it allows you to connect to many foreign databases as long as you have a suitable ODBC driver.It for example allows you to read from text files but also connect to foreign databases like MS SQL Server or IBM DB2. Due to this wide variety of foreign data sources tha capabilities of DG4ODBC are very limited. It only supports a few Oracle functions that it can directly map to foreign database equivalents. All other functions will be post processed. Post processing means that ALL records from the foreign table(s) will be fetched into the Oracle database and the result is then processed locally - so depending on the amount of data stored in the foreign database it might take a while.
    To be complete here some notes to follow up:
    This Oracle support note describes possible options you have to connect to a foreign database:
    Document 233876.1 Options for Connecting to Foreign Data Stores and Non-Oracle Databases - For example - DB2, SQL*Server, Sybase, Informix, Teradata, MySQL
    So you see, to connect from Oracle to MySQL you need to use the Database gateway for ODBC release 11.2 (HSODBC which was shipped with 10g was desupported in march 2008).
    The Database Gateway for ODBC 11.2 (=DG4ODBC) license is included in the Oracle database license and it allows you to connect with a suitable 3rd party ODBC driver to a foreign database.
    For your MySQL connection you only need to download and configure the MySQL ODBC driver from the MySQL web site. Once you can connect with the ODBC driver you could then download and configure DG4ODBC.
    As you didn't post on which platform your Oracle database is installed, here 2 notes for common platforms:
    How to Configure DG4ODBC on 64bit Unix OS (Linux, Solaris, AIX, HP-UX Itanium) to Connect to Non-Oracle (Doc ID 561033.1)
    How to Configure DG4ODBC (Oracle Database Gateway for ODBC) on 64bit Windows Operating Systems to Connect to Non-Oracle Databases Post Install (Doc ID 1266572.1)
    - Klaus

  • How do I view Migrate Data errors - Access 2003 - Oracle 10g

    I'm trying to use the SQL Developer to migrate data from an Access 2003 database to an Oracle 10g database. I followed the instructions found here:
    http://www.oracle.com/technology/tech/migration/workbench/files/omwb_getstarted.html
    I was able to complete every step except the actual data move. I exported the xml for the Access database, I captured the export and then ran the generation scripts on my target Oracle database (I'm using the same schema for the migration repository and the actual data). It created the tables with only one or two errors which I resolved.
    Now, when I select Migration->Migrate Data, I get the dialog that appears to start 4 or 5 threads and attempts to migrate each table. They all error and do not transfer any rows. I can see that there's one error per table, but I can't see the error text. I just know that an error occurred. Is there a log somewhere or is the error displayed somewhere else? How do I know what's gone wrong?
    Thanks.

    I too receive unexplained error counts using the Migrate Data menu selection and unexplained failures using the Generate Data Move Scripts menu selection. Permissions granted by role or direct grants should not be a problem, but a Migrate Data error appears in the Migration Log panel at the bottom of the SQL Developer window, "Failed to disable constraints: ORA-00942 ... ". No further details available on what constraints or why the error. No other errors were detected while following the instructions found in the Oracle SQL Developer Migration Workbench Getting Started guide. SQL Developer never migrates the data from the existing Access 2000 mdb file to the newly created schema objects in Oracle 10g using either method. The following roles and privileges have been granted to both the repository owner and the target schema owner:
    GRANT RESOURCE TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT CONNECT TO MIGRATE_USER WITH ADMIN OPTION;
    ALTER USER MIGRATE_USER DEFAULT ROLE ALL;
    -- 25 System Privileges for MIGRATE_USER
    GRANT CREATE ROLE TO MIGRATE_USER;
    GRANT ALTER TABLESPACE TO MIGRATE_USER;
    GRANT ALTER ANY SEQUENCE TO MIGRATE_USER;
    GRANT INSERT ANY TABLE TO MIGRATE_USER;
    GRANT SELECT ANY TABLE TO MIGRATE_USER;
    GRANT CREATE ANY TABLE TO MIGRATE_USER;
    GRANT UNLIMITED TABLESPACE TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT DROP TABLESPACE TO MIGRATE_USER;
    GRANT CREATE ANY TRIGGER TO MIGRATE_USER;
    GRANT ALTER ANY ROLE TO MIGRATE_USER;
    GRANT CREATE VIEW TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT DROP USER TO MIGRATE_USER;
    GRANT CREATE TABLESPACE TO MIGRATE_USER;
    GRANT GRANT ANY ROLE TO MIGRATE_USER;
    GRANT CREATE ANY SEQUENCE TO MIGRATE_USER;
    GRANT ALTER ANY TABLE TO MIGRATE_USER;
    GRANT DROP ANY TRIGGER TO MIGRATE_USER;
    GRANT DROP ANY ROLE TO MIGRATE_USER;
    GRANT DROP ANY SEQUENCE TO MIGRATE_USER;
    GRANT UPDATE ANY TABLE TO MIGRATE_USER;
    GRANT ALTER ANY TRIGGER TO MIGRATE_USER;
    GRANT COMMENT ANY TABLE TO MIGRATE_USER;
    GRANT DROP ANY TABLE TO MIGRATE_USER;
    GRANT CREATE PUBLIC SYNONYM TO MIGRATE_USER WITH ADMIN OPTION;
    GRANT CREATE USER TO MIGRATE_USER WITH ADMIN OPTION;
    -- 1 Tablespace Quota for MIGRATE_USER
    ALTER USER MIGRATE_USER QUOTA UNLIMITED ON USERS;
    Operating system for both Access 2000 and Oracle 10g is Windows XP PRO SP2.
    Oracle SQL Developer is version 1.1.2.25 build MAIN-25.79 on Windows XP PRO SP2. All three are on the same PC.
    Since only the last step failed, I created a User DSN with the ODBC administrator. Then, linked the newly created Oracle table to Access via ODBC using the DSN created. Next, I created an append query with the source being the Access table and the target being the Oracle table. I moved the data by pressing the red exclamation mark.

  • Error while migrating from ms access 2003 db to oracle 10g in sqldeveloper

    Hello,
    i am working on migration project from MS access 2003 to Oracle 10g on windows XP sp2 plateform using SQL developer.
    it went quit smoothly till the "capture microsoft access" .so in this step the sql developer opens the access db in background... but while opening the file in background it gives error
    Object library not registered i tried many workaround but of no use..
    anybody's help in this regard would be well appreciated.
    thanks.

    Hi,
    Did you follow all the steps in the SQL*Developer documentation about preparing the Access database for migration -
    Oracle® SQL Developer User’s Guide Release 3.0 -
    2.2.4.3 Before Migrating From Microsoft Access
    and -
    Oracle® SQL Developer Supplementary Information for Microsoft Access Migrations Release 3.0
    2.4 Preparing the Microsoft Access Database for Capture
    The error also indicates there may be a problem with your Access installation so could you check that everything is okay with that ? I have found references that indicate a re-install of Office/Access will prevent the error.
    Regards,
    Mike

  • Form login problem in Oracle 10g AS, even form does display

    Dear All
    We are facing one problem, when we access form with oracle 10g AS, the form is displayed, but when we enter username and password, it doesnt go to the other screen, it remains hang there and doesnt do any thing, neither give any error.
    we would appreciate the help.
    thanks in advance

    Sounds like you cannot connect to the database....
    Is there a firewall between the app-server and the database? If yes, could you check with your firewall people that all traffice from db-server is allowed to app-server (from app-server to db-server just 1521, or another port that you used for the listener, is enough)
    If not all traffic is allowed, then check the USE_SHARED_SOCKET environment variable (this is the windows name, there is a setting like this for unix too, but I can't recall the exact name by heart. It might be different)

  • Oracle net manager in oracle 10g

    Hi expert
    How can I define the odbc connection - host/access right, in oracle 10g?
    Like as in oracle 9i, it have orahome to set the odbc connection.. and then setting the net manager
    So how can I do the same way, to connect to oracle server via windows?
    rgds, Mohsin

    Please consider using Instant Client.
    http://www.oracle.com/technology/software/tech/oci/instantclient/index.html and
    http://www.oracle.com/technology/tech/oci/instantclient/index.html
    Please review the license agreement for that product if you plan on using it in production

  • Migration: Access 2003 to Oracle SQL

    Dear All
    I would like to perform a migration from Access 2003, to Oracle 10g. I am using SQL Developer for the task, and have reached the point of capturing the XML file that I exported from Access. I need to create a migration repository on the target database, and this is causing problems as I do not have all the necessary privileges.
    In the process, I have been advised that migrations from Access to Oracle are not easy to achieve, and in fact require careful planning before execution. My objective is not really to transfer the data stored within the database file. I only really want to convert Access logic into Oracle SQL code. I was wondering if anyone could advise on the typical odds of success in achieving this task.
    I migrated the same Access database to MS SQL Server some time ago and the process seemed to go smoothly. Would it be reasonable then to migrate from MS SQL to Oracle SQL if this is easier?
    Any feedback would be very much appreciated.
    Thank you.
    M

    Thanks for your response.
    I am not familiar with the intricacies of the process, I'm just following the instructions set out in the Oracle Migrating 3rd Party Databases white paper.
    In this document, a process is set out consisting of steps that export an Access database, and then capture it to an Oracle user area with appropriate privileges. The process is achieved through Oracle SQL Developer.
    I'd be very grateful if you could expand on your answer if there is a better way of translating Access queries into Oracle SQL. I am aware that an Access front-end is capable of connecting with an Oracle database to execute queries, however, there are considerable limitations in the use of Access that I would like to avoid - hence the migration.

  • Issues installing 10g ODAC on Windows 2008 with Oracle 10g Express

    I am new to Oracle and am having an issue installing Oracle Data Access Components on Oracle 10g 64bit running on Windows 2008 64bit.
    I need the ODAC installed to enable integration with SSIS.
    The issue I have if i install using ODAC10203x64 the setup file fails with a javaw error and the ntdll.dll.
    I then downloaded the ODAC1110720 which states it backwards compatible. It installs just fine, but now i am not sure as to how to configure it correctly as the Configuration util that loads in ODAC10203x64 does not run.
    The ODBC drivers are not visible under the ODBC connection manager although this may be an issue of just opening the 32Bit version.
    Any help would be appreciated

    Hi Ibrahim,
    You should decide what you require.
    32bit version can be installed on 64bit server and this should work fine (check the certification matrix for this).
    The "problem" is that you would not gain any performance benefit from the 64bit server
    If you want to have benefit you can upgrade the JVM to 64 bit version.
    I did this 3 years ago and I do not remember exact steps though everything worked OK.
    WARNING:
    this  can be unsupported, ask support to be sure
    - Install the 32 bit version on the server
    - Download 64 bit Java JRE/JDK and install it (well, you can search the same release as included in the AppServer or try newer one, 7 for example)
    - later, reconfigure the appserver so it uses the version you've installed, OR Copy the everything from c:\progfiles\java\... to the directory OraHome\... (forgot exact directories)
    try to search the forum, there had been a thread with the same question
    regards, michael
    Edited by: MickleSh on Sep 27, 2011 9:59 AM

  • Access 2007 ODBC connect to Oracle 10g

    I have configured MSAccess 2007 on my laptop with a ODBC data source to my Oracle Database and I can link to tables in the Oracle database and everything works.
    I have placed the Access Database on a 64 bit server running Window 2003 r2 Enterprise x64 edition.
    I have both the 32 bit Oracle 10g client and the 64 bit client installed on the machine.
    I have configured a 32bit ODBC data source using the 32 bit Oracle ODBC driver.
    When I click on the test connection button while setting up the data source it reports "Connection Successful"
    I have configured the registry entires (for 32 bit and 64bit) with TNS_ADMIN =the location where we have our sqlnet.ora and tnsnames.ora files.
    These files were configured to support the applications which run on this same server and they all function properly.
    When I attempt to create a link table in Access, I select the datasource and I enter the password I receive an ORA-12154 error.
    Any suggestions ?
    Thank You

    user7378475 wrote:
    I have configured MSAccess 2007 on my laptop with a ODBC data source to my Oracle Database and I can link to tables in the Oracle database and everything works.
    I have placed the Access Database on a 64 bit server running Window 2003 r2 Enterprise x64 edition.
    I have both the 32 bit Oracle 10g client and the 64 bit client installed on the machine.
    I have configured a 32bit ODBC data source using the 32 bit Oracle ODBC driver.
    When I click on the test connection button while setting up the data source it reports "Connection Successful"
    I have configured the registry entires (for 32 bit and 64bit) with TNS_ADMIN =the location where we have our sqlnet.ora and tnsnames.ora files.
    These files were configured to support the applications which run on this same server and they all function properly.
    When I attempt to create a link table in Access, I select the datasource and I enter the password I receive an ORA-12154 error.
    Any suggestions ?
    Thank YouProbably looking at the wrong tnsnames.ora.
    Or your sqlnet.ora doesn't match the other with regard to DEFAULT_DOMAIN
    Or your password has an "@" in it.
    http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/

  • Web access of oracle 10g (10.1.2.0.0) Application

    Hi,
    I've migrated my application from Tomcat and JBoss to Oracle 10g (10.1.2.0.0).
    I am able to access my application by url
    http://localhost:7200/index.jsp or http://127.0.0.1:7200/index.jsp.
    But when I am trying to access my application by giving m/c name or m/c ip address insted of localhost in the above url, i am not getting access to the application.
    Do I need to configure any where for remote access of my web application?
    Thanks
    Bhogi

    I got the fix for the issue posted by me few days back.
    In Oracle 10g AS, port 7200 is diagnosis port, which will only work for localhost or 127.0.0.1.
    The application is accessable on the configured http port (default 7777)

  • Unable to access Oracle Enterprise Manager in Oracle 10g AS Machine

    Hi All,
    We are working on oracle forms 10g in 3 tier architecture. I have installed oracle 10g Infrastructure (OraHome_1) followed by oracle 10g Application server (middle-tier,OraHome_2). I have copied all the forms to OraHome_2\forms folder and compiled them successfully.
    When i tried to access enterprise manager (Infrastructure)thru http://myappserver:18100, i was unable to do so. It displayed "page cannot be displayed".
    Also
    When i tried to access enterprise manager (middle-tier)thru http://172.16.1.1:18101, i was unable to do so. It displayed "page cannot be displayed".
    I checked for port status, thru “netstat –na” command, It was displaying
    172.16.1.1 18100 TIME_WAIT
    172.16.1.1 18101 TIME_WAIT
    172.16.1.1 7777 TIME_WAIT
    Why is that i am unable to access the Enterprise Manager?

    Hi All,
    I was able to resolve the issue. Thr was a proxy server enabled in the IE in AS machine. Once i checked the option for bypassing it and turned off the windows firewall(OS was win 2003 server). I was able to view the home page at http://myappserver, then was able to access EM also.

Maybe you are looking for