step 1 :EXPORTING
Get an export dump of your scott schema
I usually perform an export using a parameter file
for that you need to create a parameter file save it in any location
Before you perform an export make sure you have calculated size of your scott schema and see if you have enogh space left in you local hard disk for the dump file
eg i created a paramter file c:\Export\Parfile.txt
in the Parfile.txt give the following
userid=scott/password@databasename
owner=scott
file=c:\Export\exportfile.dmp
log=c:\Export\exportlog.log
buffer=10000
then in command prompt give
exp parfile=c:\Export\Parfile.txt
this will start a series on operation
you will see various messages like
Export: Release 9.2.0.1.0 - Production on Wed Feb 27 16:52:15 2002
(c) Copyright 2002 Oracle Corporation. All rights reserved.
Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
exporting table abc..
exporting table someother etc
once it is over an export file has been created in c:\Export\ by name exportfile.dmp
now you are ready for importing
Get an export dump of your scott schema
I usually perform an export using a parameter file
for that you need to create a parameter file save it in any location
Before you perform an export make sure you have calculated size of your scott schema and see if you have enogh space left in you local hard disk for the dump file
eg i created a paramter file c:\Export\Parfile.txt
in the Parfile.txt give the following
userid=scott/password@databasename
owner=scott
file=c:\Export\exportfile.dmp
log=c:\Export\exportlog.log
buffer=10000
then in command prompt give
exp parfile=c:\Export\Parfile.txt
this will start a series on operation
you will see various messages like
Export: Release 9.2.0.1.0 - Production on Wed Feb 27 16:52:15 2002
(c) Copyright 2002 Oracle Corporation. All rights reserved.
Connected to: Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
exporting table abc..
exporting table someother etc
once it is over an export file has been created in c:\Export\ by name exportfile.dmp
now you are ready for importing
No comments:
Post a Comment
Please Provide your feedback here