Please suggest if there is any way to suppress output in export/import.
for unix
exp ... > /dev/null
... Why do you want to suppress output anyway?
Anurag
IIRC output is sent to stderr so this won't work.
--
Sybrand Bakker
Senior Oracle DBA
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
Do you need to discard the dump file as well? ;-)
As other suggested, tell us what is your purpose in doing so.
And if that doesn't work, you can always switch off your monitor. Works on
all OS'es ;-)
Sybrand,
You remember correctly. The output is indeed sent to stderr ..
for which the command can be changed to
exp ... > /dev/null 2>&1 ...
Anurag