can any one help me with import/export options in
oracle............
Answer Posted / pugal
The following examples demonstrate how imp/exp can be used:
exp scott/tiger file=emp.dmp log=emp.log
tables=emp rows=yes indexes=no
exp scott/tiger file=emp.dmp tables=(emp,dept)
imp scott/tiger file=emp.dmp full=yes
imp scott/tiger file=emp.dmp fromuser=scott
touser=scott tables=dept
exp userid=scott/tiger@orcl parfile=export.txt
... where export.txt contains:
BUFFER=100000
FILE=account.dmp
FULL=n
OWNER=scott
GRANTS=y
COMPRESS=y
NOTE: If you do not like command line utilities, you can
import and export data with the "Schema Manager" GUI that
ships with Oracle Enterprise Manager (OEM).
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Can any one explain me when i execute below query.. select months_between('07-JUL-12','10-FEB-12') from dual; Out put:- 4.90322581 How oracle calculate?
What is a snapshot log?
Which dictionary tables and/or views would you look at to diagnose a locking issue?
Explain a segment?
What is the difference between translate and replace in oracle?
What is partitioned table in Oracle?
Can objects of the same schema reside in different tablespace?
What is format trigger?
How to drop an existing table in oracle?
Difference between oracle's plus (+) notation and ansi join notation?
Why do you create or replace procedures rather that drop and recreate.
what is the use of system.effective.date variable in oracle?
How to use "in out" parameter properly?
how the Oracle Prepares the Execution Plan and how it chooses the Optimal one?
Explain oracle left join with an example?