• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

Database Question

 
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi all,
I want to copy my data from access database to Oracle Database , Is it possible to open two different databases and copy to other database. code appreciated.
regards
prabhakar
 
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
ok it can be done in a number of ways :
1. make your own program that will open connections to the 2 databases and right from here to there ( very hectic trying to map all the tables especially if the DB is very big)
2. Oracle has a tool called Oracle Migration workbench which so happens i'm downloading right now
you can get it from
http://otn.oracle.com/software/tech/migration/workbench/content.html
it has plugins for different types of databases to migrate them to Oracle including MS Access
3. Use a case tool like Together Control Center ( u can download a free trial from www.togethersoft.com that will last for a month )
what this can do is that you can import the database from access into it .. then export it into Oracle .. because it supports both access and oracle.

See what suits u .. and if u have question feel free to contact me.

------------------
KaReEm
 
varkala prabhakar
Ranch Hand
Posts: 54
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanx kareem, you have given me more options then i expected.
regards
prabhakar
 
Ranch Hand
Posts: 104
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Prabhakar, you can use Oracle SQL LOADER to migrate data from a non Oracle platform. It is quite simple.
Nasser
 
reply
    Bookmark Topic Watch Topic
  • New Topic