Showing posts with label oracle export dmp file. Show all posts
Showing posts with label oracle export dmp file. Show all posts

Friday, August 2, 2013

Export or Import Oracle Database

To Import

Open Command Prompt
> imp USERNAME/PASSWORD@SERVICENAME file='path' FULL='Y'

Example: imp scott/tiger@orcl file='D:\sales.dmp' full='Y'


To Export
Open Command Prompt
> exp USERNAME/PASSWORD@SERVICENAME file='path' FULL='Y'

Example: exp scott/tiger@orcl file='D:\sales.dmp' full='Y'