Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
(sample format)
exp buffer=<value> compress=<y | n> grants=<y | n> feedback=<n lines> consistent=<y | n> file=<dump-filename> log=<log-filename> owner=<schema to export> userid=<username of exporter>/<password>@<tns alias>
(example invocation with sample values)
exp buffer=15000000 compress=n grants=y feedback=1000 consistent=y file=DHUNT.TEST.dump log=TEST_Exp.log owner=TEST userid=TEST/TEST@dhunt
"buffer=" : give a large value, which speeds the export
"compress=" : "Y" means 'allocate as an initial extent an extent size that accommodates the ENTIRE contents of the table'. "N" means 'use the standard "initial" and "next" parameters for the table. (I use "N" to avoid receiving the Oracle "Unable to allocate initial extent..." error.)
"grants=" : "Y" means export the grant on this object; "N" means don't bother exporting grants. Use "N" if the other users that have grants to the source schema's objects in the source database do not exist in the target database.
"feedback=" : During the export, display to the screen, a dot (".") for every "n" records exported.
"consistent=" : "Y" means do not allow in-flight transactions to cause contents of tables to become inconsistent during the export.
"file=" : This is the name you give to the dump file. I usually use the format "<db-name>.<schema-name>.dump".
"log=" : This is the name you give to the file that documents the progress (and errors, if applicable) that occur during the export. I usually use the format "<schema-name>_Exp.log".
"owner=" : Name of source schema to export.
"userid=" : connect string for user officiating the export.
(sample format)
imp buffer=<value> grants=<y | n> feedback=<n lines> fromuser=<source schema-name> touser=<target schema-name> file=<dump-filename> log=<log-filename> owner=<schema to export> userid=<username of importer>/<password>@<tns alias>
(example invocation with sample values)
imp buffer=15000000 grants=y feedback=1000 fromuser=TEST touser=TEST file=DHUNT.TEST.dump log=TEST_Imp.log userid=TEST/TEST@dhunt
"fromuser=" : Name of source schema (from your 9i database).
"touser=" : Name of target schema (in your 10g database).