• 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:

Import and Export

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am new to oracle. I need to import all the tables from one oracle database to another oracle database.
Can anyone tell me the import and export scripts which i need for the same?
Also can any one tell me if views can also be imported or updated when database is imported?
Thanx in advance
Amod
 
Ranch Hand
Posts: 219
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
just run the export command on the source database.
run export in the interactive mode.
perform full user export if it is schema u are interested in.
When importing,
run import from the command line.. point to the dmp file obtained from the export. If the user to which u are importing to is different, use
the fromuser and touser tags.
for more details, check the OTN site.
For help type exp help=y or imp help=y
hope this helps
 
ranger
Posts: 17347
11
Mac IntelliJ IDE Spring
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Also can any one tell me if views can also be imported or updated when database is imported?


Yes, using the Imp and exp programs you can have them export and import all types of objects.
Mark
 
reply
    Bookmark Topic Watch Topic
  • New Topic