Normally when i have to take a backup of of a database on unix, i do,

exp DBUSER/DBPSW@INST file=xxx.dmp

or load from a dump

imp DBUSER/DBPSW@INST file=xxx.dmp

my question here is :

  1. how can we take a backup of a single table
  2. how can we import the data backup from the dump into a single table.
  3. how can we disable the constraints when taking a backup

I rarely do these when required.some times i need to do the above mentioned things but instead because i donot know i take the complete backup of all the table and load it. does anybody know how we can do it?

link|improve this question

72% accept rate
This may just be a problem of terminology, but imp and exp are utilities for transporting database objects and data, they are not intended to be part of a backup strategy. RMAN is the appropriate tool to use for backups. – Allan Jul 7 '11 at 12:49
Not an answer to your question but : switch to expdp and impdp. – Robert Merkwürdigeliebe Jul 7 '11 at 13:09
feedback

1 Answer

You can list tables you want to export or import in your command line as 'tables=...' Or run exp/imp interactively and it will ask you for list of tables. Here is a good FAQ

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.