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: Export of very big table

RE: Export of very big table

From: Koivu, Lisa <lkoivu_at_qode.com>
Date: Thu, 28 Dec 2000 10:22:17 -0500
Message-Id: <10724.125391@fatcity.com>


This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible.

------_=_NextPart_001_01C070E1.F6AC7A28
Content-Type: text/plain;

        charset="iso-8859-1"

Inline below. I hope this helps you.

-----Original Message-----
From: eric.lansu_at_dutchtone.nl [mailto:eric.lansu_at_dutchtone.nl] Sent: Thursday, December 28, 2000 8:55 AM To: Multiple recipients of list ORACLE-L Subject: RE: Export of very big table

I know exporting with the direct-parameter is faster, but we are hopelessly trying to find a cause why we cannot import our export-file anymore. Export doesn't complain about the direct=y. I have the commit=y and analyze=n in the import. It's still running, and it has 9 Million records in the table (22 hours after the start of the import) My test-machine may not be that fast, it's only a Sun E450 while production is a fully equipped E10000.

Still I have some questions for you;

Have you imported this export (on a test-database)?  >> Yes.

How long did it take?
 >> It took the better part of one day.

How big was the export-file?
 >> Uncompressed, approx 14GB

Did you split it into 2Gb parts?
 >> No, we don't have that limitation on HP/UX 11.0

Have you compressed the files?
 >> Yes, always AFTER the export is complete because 1. I don't have to worry about file sizes and 2. dynamic compression can corrupt the zip file if the host begins swapping during the export.

With compress or gzip?
 >> We use compress.

What version are you on?
 >> We are running 8.1.6.2 on HP/UX 11.0

TIA. Eric Lansu

> -----Original Message-----
> From: Koivu, Lisa [SMTP:lkoivu_at_qode.com]
> Sent: Thursday, December 28, 2000 1:30 PM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: Export of very big table
>
> Hi Eric,
>
> Crank your buffer size way up for your import! That's going to speed
> things up a lot. Also, by habit, when I import a large table I use
> COMMIT=Y.
>
> Exports use the direct parameter, and that will speed up your export,
> definately. Not all objects can be exported via direct - if exp can't do
> direct, it will tell you in the log file and export via conventional.
> It's no big deal. I went from exporting our 150GB database in several
> hours to under an hour using direct.
>
> Imports do not use the direct parameter.
>
> Hope this helps... good luck.
>
> Lisa Rutland Koivu
> Oracle Database Administrator
> Qode.com
> 4850 North State Road 7
> Suite G104
> Fort Lauderdale, FL 33319
>
> V: 954.484.3191, x174
> F: 954.484.2933
> C: 954.658.5849
> <http://www.qode.com>
>
> "The information contained herein does not express the opinion or position
> of Qode.com and cannot be attributed to or made binding upon Qode.com."
>
>
> -----Original Message-----
> From: eric.lansu_at_dutchtone.nl [ <mailto:eric.lansu_at_dutchtone.nl>]
> Sent: Thursday, December 28, 2000 1:30 AM
> To: Multiple recipients of list ORACLE-L
> Subject: RE: Export of very big table
>
>
> Hello and good-morning (It is for me!)
>
> I am using Rachel's scripts now too. The difference could be in the
> omission
> of the 'direct' parameter while exporting. Usually we use it, but they are
>
> not in Rachel's script.
> I cannot see if it works yet, for I exported 19.000.000 rows yesterday and
>
> started to import them at 16:00. Now it's 7:30 (Here in Holland) and it
> only
> imported 7.000.000 rows up till now.... (15h30m 7.000.000 => 42h import
> time
> :o(
> This must be caused by 1. The omission of the direct-parameter 2. A to
> small buffer (4Mb)
> There's a lot of testing to be done, but it takes a lot of time....
>
> Een Heel Gelukkig Nieuwjaar
> A Very Happy New Year
>
> Eric Lansu, BEST-IT
> ORACLE DBA
> DutchTone - IS (Cap Gemini)
> E-mail : *eric.lansu_at_dutchtone.nl
>
> It's time for the www.best.nl in you
>
> > The information contained in this communication is confidential and may
> be
> > legally privileged. It is intended solely for the use of the individual
> or
> > entity to whom it is addressed and others authorised to receive it. If
> you
> > are not the intended recipient you are hereby notified that any
> > disclosure, copying, distribution or taking any action in reliance on
> the
> > contents of this information is strictly prohibited and may be unlawful.
>
> > Dutchtone is neither liable for the proper and complete transmission of
> > the information contained in this communication nor for any delay in its
>
> > receipt.
> >
> >
> >
> > -----Original Message-----
> > From: Ruth Gramolini [SMTP:rgramolini_at_tax.state.vt.us]
> > Sent: Tuesday, December 26, 2000 4:31 PM
> > To: Multiple recipients of list ORACLE-L
> > Subject: Re: Export of very big table
> >
> > Did you try the export/import written by Rachel Camichael? They create
> a
> > file or files of 2 gig. They can be found on the LazyDBA website under
> > scripts. I am using them to import as we speak.
> >
> > HTH,
> > Ruth
> > ----- Original Message -----
> > To: "Multiple recipients of list ORACLE-L" <ORACLE-L_at_fatcity.com>
> > Sent: Friday, December 22, 2000 6:30 AM
> >
> >
> > > Hi listers,
> > >
> > > I've been off the list for some time, but I'm back with a nice
> problem!
> > Hope
> > > to resume helping you with your's too.
> > >
> > > I have a database with tables of 10Gb. Creating the export-file fails,
>
> > for
> > > Oracle has a problem creating a export-file with a compressed size of
> > 1.5
> > Gb
> > > and more.
> > > Oracle suggested to use a named pipe with the unix-split command, but
> > this
> > > doesn't work either. We can use the method with the named pipe for an
> > > export-file with an uncompressed file size of 2Gb up to compressed
> > 1.5Gb,
> > > but splitting it doesn't work.
> > > It's an Oracle 7 database, so we cannot use the 8 functionality of exp
>
> > to
> > > split the dump over more datafiles :-(
> > >
> > > Help is very much appreciated, I will be in for 2.5 hours today, and
> > then
> > > Wednesday again.
> > >
> > > Prettige Kerst en een Gelukkig Nieuwjaar
> > > Merry Christmas and a Happy New Year
> > >
> > > Eric Lansu, BEST-IT
> > > ORACLE DBA
> > > DutchTone - IS (Cap Gemini)
> > >
> >
> --
> Please see the official ORACLE-L FAQ: <http://www.orafaq.com>
> --
> Author:
> INET: eric.lansu_at_dutchtone.nl
>
> 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: 
  INET: eric.lansu_at_dutchtone.nl

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).

------_=_NextPart_001_01C070E1.F6AC7A28
Content-Type: text/html;
	charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Diso-8859-1">
<META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2650.12">
<TITLE>RE: Export of very big table</TITLE>
</HEAD>
<BODY>

<P><FONT SIZE=3D2>Inline below.&nbsp; I hope this helps you.</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>-----Original Message-----</FONT>
<BR><FONT SIZE=3D2>From: eric.lansu_at_dutchtone.nl [<A =
HREF=3D"mailto:eric.lansu_at_dutchtone.nl">mailto:eric.lansu_at_dutchtone.nl</=
A>]</FONT>
<BR><FONT SIZE=3D2>Sent: Thursday, December 28, 2000 8:55 AM</FONT>
<BR><FONT SIZE=3D2>To: Multiple recipients of list ORACLE-L</FONT>
<BR><FONT SIZE=3D2>Subject: RE: Export of very big table</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>I know exporting with the direct-parameter is faster, =
but we are hopelessly</FONT>
<BR><FONT SIZE=3D2>trying to find a cause why we cannot import our =
export-file anymore. Export</FONT>
<BR><FONT SIZE=3D2>doesn't complain about the direct=3Dy. I have the =
commit=3Dy and analyze=3Dn in</FONT>
<BR><FONT SIZE=3D2>the import. It's still running, and it has 9 Million =
records in the table</FONT>
<BR><FONT SIZE=3D2>(22 hours after the start of the import) My =
test-machine may not be that</FONT>
<BR><FONT SIZE=3D2>fast, it's only a Sun E450 while production is a =
fully equipped E10000.</FONT>
</P>

<P><FONT SIZE=3D2>Still I have some questions for you;</FONT>
</P>

<P><FONT SIZE=3D2>Have you imported this export (on a =
test-database)?</FONT>
<BR><FONT SIZE=3D2>&nbsp;&gt;&gt; Yes.&nbsp; </FONT>
</P>

<P><FONT SIZE=3D2>How long did it take?</FONT>
<BR><FONT SIZE=3D2>&nbsp;&gt;&gt; It took the better part of one day. =
</FONT>
</P>

<P><FONT SIZE=3D2>How big was the export-file?</FONT>
<BR><FONT SIZE=3D2>&nbsp;&gt;&gt; Uncompressed, approx 14GB</FONT>
</P>

<P><FONT SIZE=3D2>Did you split it into 2Gb parts?</FONT>
<BR><FONT SIZE=3D2>&nbsp;&gt;&gt; No, we don't have that limitation on =
HP/UX 11.0</FONT>
</P>

<P><FONT SIZE=3D2>Have you compressed the files?</FONT>
<BR><FONT SIZE=3D2>&nbsp;&gt;&gt;&nbsp; Yes, always AFTER the export is =
complete because 1. I don't have to worry about file sizes and 2. =
dynamic compression can corrupt the zip file if the host begins =
swapping during the export.</FONT></P>

<P><FONT SIZE=3D2>With compress or gzip?</FONT>
<BR><FONT SIZE=3D2>&nbsp;&gt;&gt; We use compress. </FONT>
</P>

<P><FONT SIZE=3D2>What version are you on?</FONT>
<BR><FONT SIZE=3D2>&nbsp;&gt;&gt; We are running 8.1.6.2 on HP/UX =
11.0</FONT>
</P>
<BR>

<P><FONT SIZE=3D2>TIA. Eric Lansu</FONT>
</P>

<P><FONT SIZE=3D2>&gt; -----Original Message-----</FONT>
<BR><FONT SIZE=3D2>&gt; From: Koivu, Lisa [SMTP:lkoivu_at_qode.com]</FONT>
<BR><FONT SIZE=3D2>&gt; Sent: Thursday, December 28, 2000 1:30 =
PM</FONT>
<BR><FONT SIZE=3D2>&gt; To:&nbsp;&nbsp; Multiple recipients of list =
ORACLE-L</FONT>
<BR><FONT SIZE=3D2>&gt; Subject:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; RE: =
Export of very big table</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Hi Eric, </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Crank your buffer size way up for your =
import!&nbsp; That's going to speed</FONT>
<BR><FONT SIZE=3D2>&gt; things up a lot.&nbsp; Also, by habit, when I =
import a large table I use</FONT>
<BR><FONT SIZE=3D2>&gt; COMMIT=3DY.</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Exports use the direct parameter, and that will =
speed up your export,</FONT>
<BR><FONT SIZE=3D2>&gt; definately.&nbsp; Not all objects can be =
exported via direct - if exp can't do</FONT>
<BR><FONT SIZE=3D2>&gt; direct, it will tell you in the log file and =
export via conventional.</FONT>
<BR><FONT SIZE=3D2>&gt; It's no big deal.&nbsp; I went from exporting =
our 150GB database in several</FONT>
<BR><FONT SIZE=3D2>&gt; hours to under an hour using direct.</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Imports do not use the direct parameter. =
</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Hope this helps... good luck. </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Lisa Rutland Koivu </FONT>
<BR><FONT SIZE=3D2>&gt; Oracle Database Administrator </FONT>
<BR><FONT SIZE=3D2>&gt; Qode.com </FONT>
<BR><FONT SIZE=3D2>&gt; 4850 North State Road 7 </FONT>
<BR><FONT SIZE=3D2>&gt; Suite G104 </FONT>
<BR><FONT SIZE=3D2>&gt; Fort Lauderdale, FL&nbsp; 33319 </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; V: 954.484.3191, x174 </FONT>
<BR><FONT SIZE=3D2>&gt; F: 954.484.2933 </FONT>
<BR><FONT SIZE=3D2>&gt; C: 954.658.5849 </FONT>
<BR><FONT SIZE=3D2>&gt; &lt;<A HREF=3D"http://www.qode.com" =
TARGET=3D"_blank">http://www.qode.com</A>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &quot;The information contained herein does not =
express the opinion or position</FONT>
<BR><FONT SIZE=3D2>&gt; of Qode.com and cannot be attributed to or made =
binding upon Qode.com.&quot;</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; -----Original Message----- </FONT>
<BR><FONT SIZE=3D2>&gt; From: eric.lansu_at_dutchtone.nl [ &lt;<A =
HREF=3D"mailto:eric.lansu_at_dutchtone.nl">mailto:eric.lansu_at_dutchtone.nl</=
A>&gt;] </FONT>
<BR><FONT SIZE=3D2>&gt; Sent: Thursday, December 28, 2000 1:30 AM =
</FONT>
<BR><FONT SIZE=3D2>&gt; To: Multiple recipients of list ORACLE-L =
</FONT>
<BR><FONT SIZE=3D2>&gt; Subject: RE: Export of very big table </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Hello and good-morning (It is for me!) </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; I am using Rachel's scripts now too. The =
difference could be in the</FONT>
<BR><FONT SIZE=3D2>&gt; omission </FONT>
<BR><FONT SIZE=3D2>&gt; of the 'direct' parameter while exporting. =
Usually we use it, but they are</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; not in Rachel's script. </FONT>
<BR><FONT SIZE=3D2>&gt; I cannot see if it works yet, for I exported =
19.000.000 rows yesterday and</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; started to import them at 16:00. Now it's 7:30 =
(Here in Holland) and it</FONT>
<BR><FONT SIZE=3D2>&gt; only </FONT>
<BR><FONT SIZE=3D2>&gt; imported 7.000.000 rows up till now.... (15h30m =
7.000.000 =3D&gt; 42h import</FONT>
<BR><FONT SIZE=3D2>&gt; time </FONT>
<BR><FONT SIZE=3D2>&gt; :o( </FONT>
<BR><FONT SIZE=3D2>&gt; This must be caused by 1. The omission of the =
direct-parameter&nbsp; 2. A to </FONT>
<BR><FONT SIZE=3D2>&gt; small buffer (4Mb) </FONT>
<BR><FONT SIZE=3D2>&gt; There's a lot of testing to be done, but it =
takes a lot of time.... </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Een Heel Gelukkig Nieuwjaar </FONT>
<BR><FONT SIZE=3D2>&gt; A Very Happy New Year </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Eric Lansu, BEST-IT </FONT>
<BR><FONT SIZE=3D2>&gt; ORACLE DBA </FONT>
<BR><FONT SIZE=3D2>&gt; DutchTone - IS (Cap Gemini) </FONT>
<BR><FONT SIZE=3D2>&gt; E-mail&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; : =
*eric.lansu_at_dutchtone.nl </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; It's time for the www.best.nl in you </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; The information contained in this =
communication is confidential and may</FONT>
<BR><FONT SIZE=3D2>&gt; be </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; legally privileged. It is intended solely =
for the use of the individual</FONT>
<BR><FONT SIZE=3D2>&gt; or </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; entity to whom it is addressed and others =
authorised to receive it. If</FONT>
<BR><FONT SIZE=3D2>&gt; you </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; are not the intended recipient you are =
hereby notified that any </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; disclosure, copying,&nbsp; distribution or =
taking any action in reliance on</FONT>
<BR><FONT SIZE=3D2>&gt; the </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; contents of this information is strictly =
prohibited and may be unlawful.</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Dutchtone is neither liable for the proper =
and complete transmission of </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; the information contained in this =
communication nor for any delay in its</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; receipt. </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; -----Original Message----- </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; From: Ruth Gramolini =
[SMTP:rgramolini_at_tax.state.vt.us] </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Sent: Tuesday, December 26, 2000 4:31 PM =
</FONT>
<BR><FONT SIZE=3D2>&gt; &gt; To:&nbsp;&nbsp; Multiple recipients of =
list ORACLE-L </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Subject:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Re: =
Export of very big table </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Did you try the export/import written by =
Rachel Camichael?&nbsp; They create</FONT>
<BR><FONT SIZE=3D2>&gt; a </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; file or files of 2 gig.&nbsp; They can be =
found on the LazyDBA website under </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; scripts.&nbsp; I am using them to import =
as we speak. </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; HTH, </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Ruth </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; ----- Original Message ----- </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; To: &quot;Multiple recipients of list =
ORACLE-L&quot; &lt;ORACLE-L_at_fatcity.com&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Sent: Friday, December 22, 2000 6:30 AM =
</FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Hi listers, </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; I've been off the list for some time, =
but I'm back with a nice</FONT>
<BR><FONT SIZE=3D2>&gt; problem! </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Hope </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; to resume helping you with your's =
too. </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; I have a database with tables of =
10Gb. Creating the export-file fails,</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; for </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Oracle has a problem creating a =
export-file with a compressed size of </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; 1.5 </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; Gb </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; and more. </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Oracle suggested to use a named pipe =
with the unix-split command, but </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; this </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; doesn't work either. We can use the =
method with the named pipe for an </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; export-file with an uncompressed file =
size of 2Gb up to compressed </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; 1.5Gb, </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; but splitting it doesn't work. =
</FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; It's an Oracle 7 database, so we =
cannot use the 8 functionality of exp</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; to </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; split the dump over more datafiles =
:-( </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Help is very much appreciated, I will =
be in for 2.5 hours today, and </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; then </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Wednesday again. </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Prettige Kerst en een Gelukkig =
Nieuwjaar </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Merry Christmas and a Happy New Year =
</FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; Eric Lansu, BEST-IT </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; ORACLE DBA </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; DutchTone - IS (Cap Gemini) </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; &gt; </FONT>
<BR><FONT SIZE=3D2>&gt; -- </FONT>
<BR><FONT SIZE=3D2>&gt; Please see the official ORACLE-L FAQ: &lt;<A =
HREF=3D"http://www.orafaq.com" =
TARGET=3D"_blank">http://www.orafaq.com</A>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; -- </FONT>
<BR><FONT SIZE=3D2>&gt; Author: </FONT>
<BR><FONT SIZE=3D2>&gt;&nbsp;&nbsp; INET: eric.lansu_at_dutchtone.nl =
</FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>&gt; Fat City Network Services&nbsp;&nbsp;&nbsp; -- =
(858) 538-5051&nbsp; FAX: (858) 538-5051 </FONT>
<BR><FONT SIZE=3D2>&gt; San Diego, =
California&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- Public Internet =
access / Mailing Lists </FONT>
<BR><FONT SIZE=3D2>&gt; =
-------------------------------------------------------------------- =
</FONT>
<BR><FONT SIZE=3D2>&gt; To REMOVE yourself from this mailing list, send =
an E-Mail message </FONT>
<BR><FONT SIZE=3D2>&gt; to: ListGuru_at_fatcity.com (note EXACT spelling =
of 'ListGuru') and in </FONT>
<BR><FONT SIZE=3D2>&gt; the message BODY, include a line containing: =
UNSUB ORACLE-L </FONT>
<BR><FONT SIZE=3D2>&gt; (or the name of mailing list you want to be =
removed from).&nbsp; You may </FONT>
<BR><FONT SIZE=3D2>&gt; also send the HELP command for other =
information (like subscribing). </FONT>
<BR><FONT SIZE=3D2>&gt; </FONT>
<BR><FONT SIZE=3D2>-- </FONT>
<BR><FONT SIZE=3D2>Please see the official ORACLE-L FAQ: <A =
HREF=3D"http://www.orafaq.com" =
TARGET=3D"_blank">http://www.orafaq.com</A></FONT>
<BR><FONT SIZE=3D2>-- </FONT>
<BR><FONT SIZE=3D2>Author: </FONT>
<BR><FONT SIZE=3D2>&nbsp; INET: eric.lansu_at_dutchtone.nl</FONT>
</P>

<P><FONT SIZE=3D2>Fat City Network Services&nbsp;&nbsp;&nbsp; -- (858) =
538-5051&nbsp; FAX: (858) 538-5051</FONT>
<BR><FONT SIZE=3D2>San Diego, =
California&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; -- Public Internet =
access / Mailing Lists</FONT>
<BR><FONT =
SIZE=3D2>---------------------------------------------------------------=
Received on Thu Dec 28 2000 - 09:22:17 CST

Original text of this message

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