RE: Exp/Imp - suppress screen output?

2001-07-23 Thread Mark Leith
recipients of list ORACLE-L Subject: Re: Exp/Imp - suppress screen output? Michael E. Cupp, Jr. wrote: Why 1 /dev/null 2dev/null and not just /dev/null 1 is stdout and 2 is stderr. you need to redirect both to clear it off the screen. -- Bill Shrek Thater Certifiable ORACLE DBA

RE: Exp/Imp - suppress screen output?

2001-07-20 Thread Ramasamy, Baskar
run the script in background export.sh import.sh -Original Message- Sent: 20 July 2001 14:15 To: Multiple recipients of list ORACLE-L Does anyone know of a way, within Unix, to suppress the screen output from the Export and Import utilities? Thanks! -w

RE: Exp/Imp - suppress screen output?

2001-07-20 Thread Michael E. Cupp, Jr.
Why 1 /dev/null 2dev/null and not just /dev/null -Original Message- Surendra Sent: Friday, July 20, 2001 10:15 AM To: Multiple recipients of list ORACLE-L use this.. exp usn/pwd all your other parameters 1/dev/null 2dev/null Suren -Original Message- Sent: Friday, July 20,

RE: Exp/Imp - suppress screen output?

2001-07-20 Thread Deshpande, Kirti
W, Run the export with 'nohup' and optionally redirecting the 'standard error' and 'standard out' to another file. nohup exp ... or nohup exp ... 21 junk.log In the first case screen output will be redirected (default) to 'nohup.out' file. In the second case it is

RE: Exp/Imp - suppress screen output?

2001-07-20 Thread Anderson, Brian
1 is standard output 2 is standard error -Original Message- From: Michael E. Cupp, Jr. [mailto:[EMAIL PROTECTED]] Sent: Friday, July 20, 2001 10:41 AM To: Multiple recipients of list ORACLE-L Subject: RE: Exp/Imp - suppress screen output? Why 1 /dev/null 2dev/null and not just

Re: Exp/Imp - suppress screen output?

2001-07-20 Thread Mike J Kurth
You can code it like this: exp / tables=mike mike.log 21 output is in mike.log -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Mike J Kurth INET: [EMAIL PROTECTED] Fat City Network Services-- (858) 538-5051 FAX: (858) 538-5051 San Diego, California

RE: Exp/Imp - suppress screen output?

2001-07-20 Thread Michael E. Cupp, Jr.
Why 1 /dev/null 2dev/null and not just /dev/null -Original Message- Surendra Sent: Friday, July 20, 2001 10:15 AM To: Multiple recipients of list ORACLE-L use this.. exp usn/pwd all your other parameters 1/dev/null 2dev/null Suren -Original Message- Sent: Friday, July 20,

Re: Exp/Imp - suppress screen output?

2001-07-20 Thread Thater, William
Michael E. Cupp, Jr. wrote: Why 1 /dev/null 2dev/null and not just /dev/null 1 is stdout and 2 is stderr. you need to redirect both to clear it off the screen. -- Bill Shrek Thater Certifiable ORACLE DBA Telergy, Inc[EMAIL PROTECTED]

RE: Exp/Imp - suppress screen output?

2001-07-20 Thread Steve Sapovits
of list ORACLE-L Subject: Re: Exp/Imp - suppress screen output? Michael E. Cupp, Jr. wrote: Why 1 /dev/null 2dev/null and not just /dev/null 1 is stdout and 2 is stderr. you need to redirect both to clear it off the screen. -- Bill Shrek Thater Certifiable ORACLE DBA Telergy

RE: Exp/Imp - suppress screen output?

2001-07-20 Thread Browett, Darren
is different. -Original Message- From: Thater, William [mailto:[EMAIL PROTECTED]] Sent: Friday, July 20, 2001 12:31 PM To: Multiple recipients of list ORACLE-L Subject: Re: Exp/Imp - suppress screen output? Michael E. Cupp, Jr. wrote: Why 1 /dev/null 2dev/null and not just /dev/null