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

Home -> Community -> Usenet -> c.d.o.server -> Re: Suppressing output in export/import.

Re: Suppressing output in export/import.

From: HansH <hansh_at_invalid.invalid>
Date: Fri, 31 Aug 2007 01:38:52 +0200
Message-ID: <46d7548c$0$230$e4fe514c@news.xs4all.nl>


<sybrandb_at_hccnet.nl> schreef in bericht news:6shed39s8rj2a5enjlfvrcv167geu0qhds_at_4ax.com...
> On Thu, 30 Aug 2007 13:42:51 -0700, Anurag Varma <avoracle_at_gmail.com>
> wrote:

>>> Please suggest if there is any way to suppress output in export/import.
>>for unix
>>exp ... > /dev/null

> IIRC output is sent to stderr so this won't work.
Then just try any of
exp ... >/dev/null 2>/dev/null
exp ... >2 2>/dev/null
exp ... 2>1 >/dev/null
exp ... >&/dev/null

or for Windows 2000 and above

exp ... >nul 2>nul
exp ... >2 2>nul
exp ... 2>1 >nul

but then again -to the OP- WHY

HansH Received on Thu Aug 30 2007 - 18:38:52 CDT

Original text of this message

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