Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: .dmp and space used
Hi ,
from Oracle8 Bible , chapter Backup and Recovery , sub chapter Export ,
I found that we can estimate the maximum space that Export file needed :
select sum(BYTES)
from User_segments
WHERE SEGMENT_TYPE in ('TABLE' , 'INDEX' , 'LOBINDEX','LOBSEGMENT')
SUM(BYTES)
So , you can estimate how many space Your import file will take in your DB just before you export the tables....
HTH , =bambang=
<> Bambang Setiawan <>
>>> <ludivine.alligier_at_innetis.com> 03/13/01 11:05 >>>
Does anyone know how to calculate the space needed when I import a dump file when I know the dump file size ?
Thanx
L.A.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: ludivine.alligier_at_innetis.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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Bambang Setiawan INET: Bambang.Setiawan_at_Sidola.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 Tue Mar 13 2001 - 19:17:05 CST
![]() |
![]() |