Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Logical Backup for a large database

RE: Logical Backup for a large database

From: Wong, Bing <bing.wong_at_IngramMicro.com>
Date: Mon, 27 Aug 2001 13:14:25 -0700
Message-ID: <F001.00378C66.20010827133022@fatcity.com>

I would suggest to export schema by schema and schedule the jobs to run different time. In the export job, use pipe file at the unix level to compress the export file. The command is as follows:

To export and compress at the unix level...

mknod export_pipe p
compress < export_pipe > export.dmp.Z
exp ....... file=export_pipe

To import and uncompress...

uncompress < export.dmp.Z > export_pipe
imp ....... file=export_pipe

Bing

-----Original Message-----
Sent: Monday, August 27, 2001 2:11 PM
To: Multiple recipients of list ORACLE-L

DBAs

Last week one of my user dropped a table since we don't have any backup except for rman backup. It is not allowe me to do any recovery on 7/24 database. Anyway we recreate the table(we are lucky, this table hold parameters)

This make me think of situation of lossing very important big table. We have about 1000 tables with bigget one of 8GB .

Is there any idea how to perform a logical backup on a database with 150GBs. Or take a TSPITR in case of those kind of thing happen again. From my case, imp/exp looks impossibe from point of view of timing and spacing. The question will be the same for TSOITR on large database. Is there any other way to prepre those kind of situation.

Mitchell

--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Mitchell
  INET: mitchell_at_comnet.ca

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).
--

Please see the official ORACLE-L FAQ: http://www.orafaq.com
--

Author: Wong, Bing
  INET: bing.wong_at_IngramMicro.com
Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Mon Aug 27 2001 - 15:14:25 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US